mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-15 23:20:36 +01:00
DB: Add drop script compatible with MySQL 8
(cherry picked from commit 7e5c1cf453)
This commit is contained in:
committed by
funjoker
parent
74174332c6
commit
528e9959e8
11
sql/create/drop_mysql_8.sql
Normal file
11
sql/create/drop_mysql_8.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'trinity'@'localhost';
|
||||
|
||||
DROP USER 'trinity'@'localhost';
|
||||
|
||||
DROP DATABASE IF EXISTS `world`;
|
||||
|
||||
DROP DATABASE IF EXISTS `characters`;
|
||||
|
||||
DROP DATABASE IF EXISTS `auth`;
|
||||
|
||||
DROP DATABASE IF EXISTS `hotfixes`;
|
||||
Reference in New Issue
Block a user