[Bug Fix] Fix zone database update manifest (#3972)

* [Bug Fix] Fix zone database update manifest

# Notes
- Missing comma.

* Update database_update_manifest.cpp
This commit is contained in:
Alex King 2024-01-13 18:15:01 -05:00 committed by GitHub
parent 4b5b29b165
commit 5ad4129312
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5194,8 +5194,8 @@ ALTER TABLE `instance_list`
.match = "",
.sql = R"(
ALTER TABLE `zone`
ADD COLUMN `idle_when_empty` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 AFTER `min_lava_damage`
ADD COLUMN `seconds_before_idle` int(11) UNSIGNED NOT NULL DEFAULT 60 AFTER `idle_when_empty`
ADD COLUMN `idle_when_empty` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 AFTER `min_lava_damage`,
ADD COLUMN `seconds_before_idle` int(11) UNSIGNED NOT NULL DEFAULT 60 AFTER `idle_when_empty`;
)",
.content_schema_update = true
}