diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/master/2024_06_23_00_hotfixes.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2024_06_23_00_hotfixes.sql b/sql/updates/hotfixes/master/2024_06_23_00_hotfixes.sql new file mode 100644 index 00000000000..0aa04fbc9a1 --- /dev/null +++ b/sql/updates/hotfixes/master/2024_06_23_00_hotfixes.sql @@ -0,0 +1,7 @@ +DROP TABLE IF EXISTS `area_trigger_action_set`; +CREATE TABLE `area_trigger_action_set` ( + `ID` int unsigned NOT NULL DEFAULT '0', + `Flags` int NOT NULL DEFAULT '0', + `VerifiedBuild` int NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
