Fully tested the remote database

Added default host for the admin account
This commit is contained in:
2024-05-03 09:22:45 +10:00
parent ab9e7456fb
commit cd34f0db5c
3 changed files with 10 additions and 11 deletions
+4 -9
View File
@@ -1,10 +1,5 @@
#This file only needs to be run once, during initial development setup
#This file isnt needed for actual deployment
#use this while debugging
CREATE DATABASE template;
CREATE USER 'template'@'%' IDENTIFIED BY 'pikachu';
GRANT ALL PRIVILEGES ON template.* TO 'template'@'%';
#Create the development database
CREATE DATABASE IF NOT EXISTS template;
USE template;
#Create the database user
CREATE USER IF NOT EXISTS 'template'@'%' IDENTIFIED BY 'pikachu';
GRANT ALL PRIVILEGES ON template.* TO 'template'@'%';