Files
chat-server/tools/debug-startup.sql
T
2021-12-23 14:00:47 +00:00

5 lines
172 B
SQL

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