aboutsummaryrefslogtreecommitdiff
path: root/sql/create/drop_mysql.sql
diff options
context:
space:
mode:
authorKinzcool <kinzzcool@hotmail.com>2014-10-19 01:19:40 -0400
committerKinzcool <kinzzcool@hotmail.com>2014-10-19 01:19:40 -0400
commit0bf163bf8fae3d9fc0f116964f5420d8875c2623 (patch)
treee6654c056a30cf57ce25fd7cde2a96da45df6b14 /sql/create/drop_mysql.sql
parent2c6f7734784c2f37f37650c82543625d9268fc15 (diff)
DB/Hotfixes: Created a `hotfixes` database for DB2 data that can be sent via SMSG_DB_REPLY
* Added AreaPOI * Added AreaPOIState
Diffstat (limited to 'sql/create/drop_mysql.sql')
-rw-r--r--sql/create/drop_mysql.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/create/drop_mysql.sql b/sql/create/drop_mysql.sql
index ee05439df99..29f0031d06f 100644
--- a/sql/create/drop_mysql.sql
+++ b/sql/create/drop_mysql.sql
@@ -12,6 +12,10 @@ 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`;
@@ -19,3 +23,5 @@ DROP DATABASE IF EXISTS `world`;
DROP DATABASE IF EXISTS `characters`;
DROP DATABASE IF EXISTS `auth`;
+
+DROP DATABASE IF EXISTS `hotfixes`;