diff options
author | spp <none@none> | 2009-12-11 02:29:58 +0100 |
---|---|---|
committer | spp <none@none> | 2009-12-11 02:29:58 +0100 |
commit | 7fa5c67861a9fb9d34cd8a64a03e4be1f6ab0492 (patch) | |
tree | 7cb5ba70da19ba0d661fdb2f263f6a8f39124c32 | |
parent | 7d70919b790bf9320cc3c208c8aed86d60f5250f (diff) |
Fix drop_mysql user drop query, by Anonymous contributor. Closes #5
--HG--
branch : trunk
-rw-r--r-- | sql/drop_mysql.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/drop_mysql.sql b/sql/drop_mysql.sql index 63f64a01e1e..c0ec81e378f 100644 --- a/sql/drop_mysql.sql +++ b/sql/drop_mysql.sql @@ -12,10 +12,10 @@ REVOKE ALL PRIVILEGES ON `realmd` . * FROM 'trinity'@'localhost'; REVOKE GRANT OPTION ON `realmd` . * FROM 'trinity'@'localhost'; -DELETE FROM `user` WHERE CONVERT( User USING utf8 ) = CONVERT( 'trinity' USING utf8 ) AND CONVERT( Host USING utf8 ) = CONVERT( 'localhost' USING utf8 ) ; +DROP USER 'trinity'@'localhost'; -DROP DATABASE IF EXISTS `world` ; +DROP DATABASE IF EXISTS `world`; -DROP DATABASE IF EXISTS `characters` ; +DROP DATABASE IF EXISTS `characters`; -DROP DATABASE IF EXISTS `realmd` ; +DROP DATABASE IF EXISTS `realmd`; |