forked from TrinityCore/TrinityCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdrop_mysql.sql
More file actions
27 lines (14 loc) · 770 Bytes
/
drop_mysql.sql
File metadata and controls
27 lines (14 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 `auth` . * FROM 'trinity'@'localhost';
REVOKE GRANT OPTION ON `auth` . * FROM 'trinity'@'localhost';
REVOKE ALL PRIVILEGES ON `hotfixes` . * FROM 'trinity'@'localhost';
REVOKE GRANT OPTION ON `hotfixes` . * FROM 'trinity'@'localhost';
DROP USER 'trinity'@'localhost';
DROP DATABASE IF EXISTS `world`;
DROP DATABASE IF EXISTS `characters`;
DROP DATABASE IF EXISTS `auth`;
DROP DATABASE IF EXISTS `hotfixes`;