[Database] Correct manifest migration entries that should be content (#4047)

This commit is contained in:
Chris Miles 2024-02-05 17:37:15 -06:00 committed by GitHub
parent 8edf7a07e3
commit 9e2afd5571
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5241,7 +5241,8 @@ DROP TABLE IF EXISTS item_tick
.sql = R"(
ALTER TABLE `spawngroup`
MODIFY COLUMN `name` varchar(200) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '' AFTER `id`;
)"
)",
.content_schema_update = true
},
ManifestEntry{
.version = 9257,
@ -5252,7 +5253,8 @@ MODIFY COLUMN `name` varchar(200) CHARACTER SET latin1 COLLATE latin1_swedish_ci
.sql = R"(
ALTER TABLE `ground_spawns`
ADD COLUMN `fix_z` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 AFTER `respawn_timer`;
)"
)",
.content_schema_update = true
},
ManifestEntry{
.version = 9258,