diff options
author | Shauren <shauren.trinity@gmail.com> | 2025-06-22 22:55:24 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2025-06-22 22:55:24 +0200 |
commit | aead8db7cab47748f51f01389a8d86189f5203c0 (patch) | |
tree | 9a2c1fe365284a194029381b0f9baa3bb15f3ad5 /sql | |
parent | e59059e1bd2f67691e2da0105771b0cb55b123a4 (diff) |
SQL: Fix missing comma
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2025_06_22_00_world.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/updates/world/master/2025_06_22_00_world.sql b/sql/updates/world/master/2025_06_22_00_world.sql index 659c7c7773b..485aa27c690 100644 --- a/sql/updates/world/master/2025_06_22_00_world.sql +++ b/sql/updates/world/master/2025_06_22_00_world.sql @@ -1,5 +1,5 @@ ALTER TABLE `playerchoice` - MODIFY `Duration` bigint NULL DEFAULT 0 AFTER `CloseSoundKitId` + MODIFY `Duration` bigint NULL DEFAULT 0 AFTER `CloseSoundKitId`, ADD `InfiniteRange` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 AFTER `Question`, MODIFY `HideWarboardHeader` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 AFTER `Question`, MODIFY `KeepOpenAfterChoice` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 AFTER `HideWarboardHeader`, |