diff options
author | XTZGZoReX <none@none> | 2008-10-10 15:20:27 -0500 |
---|---|---|
committer | XTZGZoReX <none@none> | 2008-10-10 15:20:27 -0500 |
commit | 1e1ba89c4960a76a61ceeeb90d0194b46872ec52 (patch) | |
tree | ffab7320c7a117a95e9d4a93370f9a719d90aa3f /sql/drop_mysql.sql | |
parent | 479fe8b767c833ae5055af31a800738ba8e597ad (diff) |
[svn] * Fixing some typos in SQL files.
* Applying proper structure to SQL updates.
* Fixing ImpConfig compile problems.
* Moving INSTALL to INSTALL.linux to avoid autoconf collisions.
--HG--
branch : trunk
rename : INSTALL => INSTALL.linux
rename : sql/updates/10_instantiated_battlegrounds.sql => sql/updates/10_world.sql
rename : sql/updates/11_arena_points_characters.sql => sql/updates/11_characters.sql
Diffstat (limited to 'sql/drop_mysql.sql')
-rw-r--r-- | sql/drop_mysql.sql | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sql/drop_mysql.sql b/sql/drop_mysql.sql index 4ed3f55472e..1f2bf090ef8 100644 --- a/sql/drop_mysql.sql +++ b/sql/drop_mysql.sql @@ -1,20 +1,20 @@ -REVOKE ALL PRIVILEGES ON * . * FROM 'mangos'@'localhost'; +REVOKE ALL PRIVILEGES ON * . * FROM 'trinity'@'localhost'; -REVOKE ALL PRIVILEGES ON `mangos` . * FROM 'mangos'@'localhost'; +REVOKE ALL PRIVILEGES ON `mangos` . * FROM 'trinity'@'localhost'; -REVOKE GRANT OPTION ON `mangos` . * FROM 'mangos'@'localhost'; +REVOKE GRANT OPTION ON `mangos` . * FROM 'trinity'@'localhost'; -REVOKE ALL PRIVILEGES ON `characters` . * FROM 'mangos'@'localhost'; +REVOKE ALL PRIVILEGES ON `characters` . * FROM 'trinity'@'localhost'; -REVOKE GRANT OPTION ON `characters` . * FROM 'mangos'@'localhost'; +REVOKE GRANT OPTION ON `characters` . * FROM 'trinity'@'localhost'; -REVOKE ALL PRIVILEGES ON `realmd` . * FROM 'mangos'@'localhost'; +REVOKE ALL PRIVILEGES ON `realmd` . * FROM 'trinity'@'localhost'; -REVOKE GRANT OPTION ON `realmd` . * FROM 'mangos'@'localhost'; +REVOKE GRANT OPTION ON `realmd` . * FROM 'trinity'@'localhost'; -DELETE FROM `user` WHERE CONVERT( User USING utf8 ) = CONVERT( 'mangos' USING utf8 ) AND CONVERT( Host USING utf8 ) = CONVERT( 'localhost' USING utf8 ) ; +DELETE FROM `user` WHERE CONVERT( User USING utf8 ) = CONVERT( 'trinity' USING utf8 ) AND CONVERT( Host USING utf8 ) = CONVERT( 'localhost' USING utf8 ) ; -DROP DATABASE IF EXISTS `mangos` ; +DROP DATABASE IF EXISTS `world` ; DROP DATABASE IF EXISTS `characters` ; |