feat(DB): Keeping database names consistent troughout the system (#1603)

This commit is contained in:
WiZZy
2019-03-25 19:18:07 +02:00
committed by Nefertumm
parent 824a80005c
commit 52872bd10f
2 changed files with 13 additions and 13 deletions

View File

@@ -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`;