Fully tested the remote database

Added configurable hostname for default account email
This commit is contained in:
2024-05-03 09:26:12 +10:00
parent 6859b36ae0
commit 0bc7cb11f0
6 changed files with 13 additions and 9 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
#use this while debugging
CREATE DATABASE IF NOT EXISTS auth;
CREATE USER IF NOT EXISTS 'auth'@'%' IDENTIFIED BY 'charizard';
CREATE DATABASE auth;
CREATE USER 'auth'@'%' IDENTIFIED BY 'charizard';
GRANT ALL PRIVILEGES ON auth.* TO 'auth'@'%';