[svn] * Proper SVN structure

--HG--
branch : trunk
This commit is contained in:
Neo2003
2008-10-02 16:23:55 -05:00
commit 9b1c0e006f
2564 changed files with 621124 additions and 0 deletions

21
sql/drop_mysql.sql Normal file
View File

@@ -0,0 +1,21 @@
REVOKE ALL PRIVILEGES ON * . * FROM 'mangos'@'localhost';
REVOKE ALL PRIVILEGES ON `mangos` . * FROM 'mangos'@'localhost';
REVOKE GRANT OPTION ON `mangos` . * FROM 'mangos'@'localhost';
REVOKE ALL PRIVILEGES ON `characters` . * FROM 'mangos'@'localhost';
REVOKE GRANT OPTION ON `characters` . * FROM 'mangos'@'localhost';
REVOKE ALL PRIVILEGES ON `realmd` . * FROM 'mangos'@'localhost';
REVOKE GRANT OPTION ON `realmd` . * FROM 'mangos'@'localhost';
DELETE FROM `user` WHERE CONVERT( User USING utf8 ) = CONVERT( 'mangos' USING utf8 ) AND CONVERT( Host USING utf8 ) = CONVERT( 'localhost' USING utf8 ) ;
DROP DATABASE IF EXISTS `mangos` ;
DROP DATABASE IF EXISTS `characters` ;
DROP DATABASE IF EXISTS `realmd` ;