From 551747d4c0ffa77f5654f1ce83666a489b5c4d68 Mon Sep 17 00:00:00 2001 From: Jake Forrester Date: Wed, 8 Sep 2021 12:56:29 -0700 Subject: [PATCH] fix(DB/MySQL): Drop script table name (#7788) --- data/sql/create/drop_mysql.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/sql/create/drop_mysql.sql b/data/sql/create/drop_mysql.sql index 21598bf63..8b8d66f28 100644 --- a/data/sql/create/drop_mysql.sql +++ b/data/sql/create/drop_mysql.sql @@ -8,9 +8,9 @@ REVOKE ALL PRIVILEGES ON `acore_characters` . * FROM 'acore'@'localhost'; REVOKE GRANT OPTION ON `acore_characters` . * FROM 'acore'@'localhost'; -REVOKE ALL PRIVILEGES ON `auth` . * FROM 'acore'@'localhost'; +REVOKE ALL PRIVILEGES ON `acore_auth` . * FROM 'acore'@'localhost'; -REVOKE GRANT OPTION ON `auth` . * FROM 'acore'@'localhost'; +REVOKE GRANT OPTION ON `acore_auth` . * FROM 'acore'@'localhost'; DROP USER 'acore'@'localhost';