* Renamed some directories in sql/ to more accurately reflect their purpose

--HG--
branch : trunk
rename : sql/auth_database.sql => sql/base/auth_database.sql
rename : sql/character_database.sql => sql/base/character_database.sql
rename : sql/world_database.sql => sql/base/world_database.sql
rename : sql/tools/CMakeLists.txt => sql/create/CMakeLists.txt
rename : sql/tools/create_mysql.sql => sql/create/create_mysql.sql
rename : sql/tools/drop_mysql.sql => sql/create/drop_mysql.sql
rename : sql/full/CMakeLists.txt => sql/scripts/CMakeLists.txt
rename : sql/full/world_script_texts.sql => sql/scripts/world_script_texts.sql
rename : sql/full/world_script_waypoints.sql => sql/scripts/world_script_waypoints.sql
rename : sql/full/world_scripts_full.sql => sql/scripts/world_scripts_full.sql
This commit is contained in:
Brian
2010-06-09 00:54:15 -06:00
parent 0a4899646d
commit c97247a990
11 changed files with 2 additions and 1 deletions

21
sql/create/drop_mysql.sql Normal file
View File

@@ -0,0 +1,21 @@
REVOKE ALL PRIVILEGES ON * . * FROM 'trinity'@'localhost';
REVOKE ALL PRIVILEGES ON `world` . * FROM 'trinity'@'localhost';
REVOKE GRANT OPTION ON `world` . * FROM 'trinity'@'localhost';
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 GRANT OPTION ON `realmd` . * FROM 'trinity'@'localhost';
DROP USER 'trinity'@'localhost';
DROP DATABASE IF EXISTS `world`;
DROP DATABASE IF EXISTS `characters`;
DROP DATABASE IF EXISTS `realmd`;