Files
auth-server/test/debug-startup.sql
T

5 lines
171 B
SQL

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