mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
88a6c697cc
Use different root password Use correct database for setup Change precedence for setup SQL scripts Remove deprececated options from my.cnf
9 lines
No EOL
400 B
SQL
9 lines
No EOL
400 B
SQL
-- FIXME: this should be somewhere else probably
|
|
CREATE DATABASE IF NOT EXISTS ensl_development;
|
|
GRANT ALL PRIVILEGES ON ensl_development.* TO 'ensl'@'%' WITH GRANT OPTION;
|
|
|
|
CREATE DATABASE IF NOT EXISTS ensl_test;
|
|
GRANT ALL PRIVILEGES ON ensl_test.* TO 'ensl'@'%' WITH GRANT OPTION;
|
|
|
|
CREATE DATABASE IF NOT EXISTS ensl_staging;
|
|
GRANT ALL PRIVILEGES ON ensl_staging.* TO 'ensl'@'%' WITH GRANT OPTION; |