Files
chat-server/tools/debug-startup.sql
T
2024-05-03 09:27:29 +10:00

5 lines
144 B
SQL

#use this while debugging
CREATE DATABASE chat;
CREATE USER 'chat'@'%' IDENTIFIED BY 'blastoise';
GRANT ALL PRIVILEGES ON chat.* TO 'chat'@'%';