mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 15:40:45 +01:00
* 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
22 lines
730 B
SQL
22 lines
730 B
SQL
REVOKE ALL PRIVILEGES ON * . * FROM 'trinity'@'localhost';
|
|
|
|
REVOKE ALL PRIVILEGES ON `mangos` . * FROM 'trinity'@'localhost';
|
|
|
|
REVOKE GRANT OPTION ON `mangos` . * 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';
|
|
|
|
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 `world` ;
|
|
|
|
DROP DATABASE IF EXISTS `characters` ;
|
|
|
|
DROP DATABASE IF EXISTS `realmd` ;
|