aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2023_07_09_01_world.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/master/2023_07_09_01_world.sql b/sql/updates/world/master/2023_07_09_01_world.sql
new file mode 100644
index 00000000000..1107b0db29b
--- /dev/null
+++ b/sql/updates/world/master/2023_07_09_01_world.sql
@@ -0,0 +1,6 @@
+DROP TABLE IF EXISTS `event_script_names`;
+CREATE TABLE `event_script_names` (
+ `Id` int unsigned NOT NULL,
+ `ScriptName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
+ PRIMARY KEY (`Id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;