diff options
Diffstat (limited to 'sql/drop_mysql.sql')
-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`; |