diff --git a/sql/create_database.sql b/sql/create_database.sql new file mode 100644 index 0000000..d064325 --- /dev/null +++ b/sql/create_database.sql @@ -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'@'%'; \ No newline at end of file