From 7fa5c67861a9fb9d34cd8a64a03e4be1f6ab0492 Mon Sep 17 00:00:00 2001 From: spp Date: Fri, 11 Dec 2009 02:29:58 +0100 Subject: Fix drop_mysql user drop query, by Anonymous contributor. Closes #5 --HG-- branch : trunk --- sql/drop_mysql.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sql/drop_mysql.sql') 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`; -- cgit v1.2.3