Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit 2c4a20d

Browse files
jackpozOvahlord
authored andcommitted
DB: Add drop script compatible with MySQL 8
1 parent cc33d38 commit 2c4a20d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

sql/create/drop_mysql_8.sql

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'trinity'@'localhost';
2+
3+
DROP USER 'trinity'@'localhost';
4+
5+
DROP DATABASE IF EXISTS `world`;
6+
7+
DROP DATABASE IF EXISTS `characters`;
8+
9+
DROP DATABASE IF EXISTS `auth`;

0 commit comments

Comments
 (0)