0bc7cb11f0
Added configurable hostname for default account email
5 lines
144 B
SQL
5 lines
144 B
SQL
#use this while debugging
|
|
CREATE DATABASE auth;
|
|
CREATE USER 'auth'@'%' IDENTIFIED BY 'charizard';
|
|
GRANT ALL PRIVILEGES ON auth.* TO 'auth'@'%';
|