Shouldn't have deleted this

This commit is contained in:
2021-02-12 11:12:32 +11:00
parent bb4564f3de
commit 0c49ea4245
+10
View File
@@ -0,0 +1,10 @@
#This file only needs to be run once, during initial development setup
#This file isnt needed for actual deployment
#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'@'%';