aboutsummaryrefslogtreecommitdiff
path: root/sql/tools/drop_mysql.sql
diff options
context:
space:
mode:
authorXanadu <none@none>2010-07-20 06:53:27 +0200
committerXanadu <none@none>2010-07-20 06:53:27 +0200
commitfdc4adbfe1d5b0faba3fd10dc6ec298839569cc2 (patch)
tree2a29efe67a46c7d6d78074f8e4749c128832cb9d /sql/tools/drop_mysql.sql
parent37c79360b4d7353d94bb4b67e4d0e23ef0e419fa (diff)
* Returned CMakeLists.txt misplaced in the merge. Thanks to click for spotting it.
* Deleted some files that also shouldn't have been there. --HG-- branch : trunk rename : sql/tools/CMakeLists.txt => sql/CMakeLists.txt
Diffstat (limited to 'sql/tools/drop_mysql.sql')
-rw-r--r--sql/tools/drop_mysql.sql21
1 files changed, 0 insertions, 21 deletions
diff --git a/sql/tools/drop_mysql.sql b/sql/tools/drop_mysql.sql
deleted file mode 100644
index c0ec81e378f..00000000000
--- a/sql/tools/drop_mysql.sql
+++ /dev/null
@@ -1,21 +0,0 @@
-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`;