mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-10 20:19:49 +01:00
* Cleanup in sql directory.
--HG-- branch : trunk
This commit is contained in:
21
sql/tools/drop_mysql.sql
Normal file
21
sql/tools/drop_mysql.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
REVOKE ALL PRIVILEGES ON * . * FROM 'trinity'@'localhost';
|
||||
|
||||
REVOKE ALL PRIVILEGES ON `world` . * FROM 'trinity'@'localhost';
|
||||
|
||||
REVOKE GRANT OPTION ON `world` . * FROM 'trinity'@'localhost';
|
||||
|
||||
REVOKE ALL PRIVILEGES ON `characters` . * FROM 'trinity'@'localhost';
|
||||
|
||||
REVOKE GRANT OPTION ON `characters` . * FROM 'trinity'@'localhost';
|
||||
|
||||
REVOKE ALL PRIVILEGES ON `realmd` . * FROM 'trinity'@'localhost';
|
||||
|
||||
REVOKE GRANT OPTION ON `realmd` . * FROM 'trinity'@'localhost';
|
||||
|
||||
DROP USER 'trinity'@'localhost';
|
||||
|
||||
DROP DATABASE IF EXISTS `world`;
|
||||
|
||||
DROP DATABASE IF EXISTS `characters`;
|
||||
|
||||
DROP DATABASE IF EXISTS `realmd`;
|
||||
Reference in New Issue
Block a user