mirror of
https://github.com/azerothcore/azerothcore-wotlk.git
synced 2026-01-23 04:42:05 -08:00
feat(DB): Keeping database names consistent troughout the system (#1603)
This commit is contained in:
parent
824a80005c
commit
52872bd10f
2 changed files with 13 additions and 13 deletions
|
|
@ -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`;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue