diff options
| author | WiZZy <bilucristian25@gmail.com> | 2019-03-25 19:18:07 +0200 |
|---|---|---|
| committer | Nefertumm <nefertum.dev@protonmail.com> | 2019-03-25 14:18:07 -0300 |
| commit | 52872bd10fca3ea4475c62bdcddfbf4044948da9 (patch) | |
| tree | 8ed3e5c80752ff62a66d6a4ed7fcf1e5ff625e06 /data/sql/create/drop_mysql.sql | |
| parent | 824a80005c872dbd266ed69bb321525d1e2f3479 (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.sql | 14 |
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`; |
