Files
auth-server/tools/debug-startup.sql
T
2021-12-23 13:33:58 +00:00

5 lines
172 B
SQL

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