mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 15:40:45 +01:00
--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
22 lines
603 B
SQL
22 lines
603 B
SQL
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`;
|