summaryrefslogtreecommitdiff
path: root/data/sql/create/drop_mysql.sql
diff options
context:
space:
mode:
authorWiZZy <bilucristian25@gmail.com>2019-03-25 19:18:07 +0200
committerNefertumm <nefertum.dev@protonmail.com>2019-03-25 14:18:07 -0300
commit52872bd10fca3ea4475c62bdcddfbf4044948da9 (patch)
tree8ed3e5c80752ff62a66d6a4ed7fcf1e5ff625e06 /data/sql/create/drop_mysql.sql
parent824a80005c872dbd266ed69bb321525d1e2f3479 (diff)
feat(DB): Keeping database names consistent troughout the system (#1603)
Diffstat (limited to 'data/sql/create/drop_mysql.sql')
-rw-r--r--data/sql/create/drop_mysql.sql14
1 files changed, 7 insertions, 7 deletions
diff --git a/data/sql/create/drop_mysql.sql b/data/sql/create/drop_mysql.sql
index 90f33cb01c..21598bf637 100644
--- a/data/sql/create/drop_mysql.sql
+++ b/data/sql/create/drop_mysql.sql
@@ -1,12 +1,12 @@
REVOKE ALL PRIVILEGES ON * . * FROM 'acore'@'localhost';
-REVOKE ALL PRIVILEGES ON `world` . * FROM 'acore'@'localhost';
+REVOKE ALL PRIVILEGES ON `acore_world` . * FROM 'acore'@'localhost';
-REVOKE GRANT OPTION ON `world` . * FROM 'acore'@'localhost';
+REVOKE GRANT OPTION ON `acore_world` . * FROM 'acore'@'localhost';
-REVOKE ALL PRIVILEGES ON `characters` . * FROM 'acore'@'localhost';
+REVOKE ALL PRIVILEGES ON `acore_characters` . * FROM 'acore'@'localhost';
-REVOKE GRANT OPTION ON `characters` . * FROM 'acore'@'localhost';
+REVOKE GRANT OPTION ON `acore_characters` . * FROM 'acore'@'localhost';
REVOKE ALL PRIVILEGES ON `auth` . * FROM 'acore'@'localhost';
@@ -14,8 +14,8 @@ REVOKE GRANT OPTION ON `auth` . * FROM 'acore'@'localhost';
DROP USER 'acore'@'localhost';
-DROP DATABASE IF EXISTS `world`;
+DROP DATABASE IF EXISTS `acore_world`;
-DROP DATABASE IF EXISTS `characters`;
+DROP DATABASE IF EXISTS `acore_characters`;
-DROP DATABASE IF EXISTS `auth`;
+DROP DATABASE IF EXISTS `acore_auth`;