diff options
author | Brian <runningnak3d@gmail.com> | 2010-07-09 02:47:16 -0600 |
---|---|---|
committer | Brian <runningnak3d@gmail.com> | 2010-07-09 02:47:16 -0600 |
commit | 948e86ef174e83ded5055f0212a5d4bcd1f6f595 (patch) | |
tree | d45bbe2b4b1ef691efe920357760984bb57e2304 /sql/create | |
parent | 1f5be45855b34743fdb66745524bef1e18270007 (diff) |
* Update drop file as well
--HG--
branch : trunk
Diffstat (limited to 'sql/create')
-rw-r--r-- | sql/create/drop_mysql.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/create/drop_mysql.sql b/sql/create/drop_mysql.sql index c0ec81e378f..ee05439df99 100644 --- a/sql/create/drop_mysql.sql +++ b/sql/create/drop_mysql.sql @@ -8,9 +8,9 @@ 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 ALL PRIVILEGES ON `auth` . * FROM 'trinity'@'localhost'; -REVOKE GRANT OPTION ON `realmd` . * FROM 'trinity'@'localhost'; +REVOKE GRANT OPTION ON `auth` . * FROM 'trinity'@'localhost'; DROP USER 'trinity'@'localhost'; @@ -18,4 +18,4 @@ DROP DATABASE IF EXISTS `world`; DROP DATABASE IF EXISTS `characters`; -DROP DATABASE IF EXISTS `realmd`; +DROP DATABASE IF EXISTS `auth`; |