diff options
author | Xanadu <none@none> | 2010-07-20 06:53:27 +0200 |
---|---|---|
committer | Xanadu <none@none> | 2010-07-20 06:53:27 +0200 |
commit | fdc4adbfe1d5b0faba3fd10dc6ec298839569cc2 (patch) | |
tree | 2a29efe67a46c7d6d78074f8e4749c128832cb9d /sql/tools/drop_mysql.sql | |
parent | 37c79360b4d7353d94bb4b67e4d0e23ef0e419fa (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.sql | 21 |
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`; |