summaryrefslogtreecommitdiff
path: root/sql-files/init.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql-files/init.sql')
-rw-r--r--sql-files/init.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/sql-files/init.sql b/sql-files/init.sql
new file mode 100644
index 00000000..060245a0
--- /dev/null
+++ b/sql-files/init.sql
@@ -0,0 +1,4 @@
+CREATE DATABASE evol;
+CREATE USER 'evol'@'localhost' IDENTIFIED BY 'evol';
+GRANT ALTER,CREATE,SELECT,INSERT,UPDATE,DELETE,DROP,INDEX ON `evol`.* TO 'evol'@'localhost';
+FLUSH PRIVILEGES;