From 7e5c1cf453972e142613ab828b75c8635edf697d Mon Sep 17 00:00:00 2001 From: Giacomo Pozzoni Date: Thu, 13 May 2021 16:55:01 +0200 Subject: DB: Add drop script compatible with MySQL 8 --- sql/create/drop_mysql_8.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sql/create/drop_mysql_8.sql (limited to 'sql/create') diff --git a/sql/create/drop_mysql_8.sql b/sql/create/drop_mysql_8.sql new file mode 100644 index 00000000000..213bc2e926c --- /dev/null +++ b/sql/create/drop_mysql_8.sql @@ -0,0 +1,9 @@ +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`; -- cgit v1.2.3