mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2025-11-29 17:38:24 +08:00
22 lines
623 B
SQL
22 lines
623 B
SQL
REVOKE ALL PRIVILEGES ON * . * FROM 'acore'@'localhost';
|
|
|
|
REVOKE ALL PRIVILEGES ON `acore_world` . * FROM 'acore'@'localhost';
|
|
|
|
REVOKE GRANT OPTION ON `acore_world` . * FROM 'acore'@'localhost';
|
|
|
|
REVOKE ALL PRIVILEGES ON `acore_characters` . * FROM 'acore'@'localhost';
|
|
|
|
REVOKE GRANT OPTION ON `acore_characters` . * FROM 'acore'@'localhost';
|
|
|
|
REVOKE ALL PRIVILEGES ON `auth` . * FROM 'acore'@'localhost';
|
|
|
|
REVOKE GRANT OPTION ON `auth` . * FROM 'acore'@'localhost';
|
|
|
|
DROP USER 'acore'@'localhost';
|
|
|
|
DROP DATABASE IF EXISTS `acore_world`;
|
|
|
|
DROP DATABASE IF EXISTS `acore_characters`;
|
|
|
|
DROP DATABASE IF EXISTS `acore_auth`;
|