From d1fd40cd852f666131287cb68832028cb8283962 Mon Sep 17 00:00:00 2001 From: JJ <3617814+joligario@users.noreply.github.com> Date: Wed, 9 Apr 2025 21:53:41 -0400 Subject: [PATCH] [Database] Fix manifest for `helmtexture` in `horses` table (#4852) * Update database_update_manifest.cpp * Update database_update_manifest.cpp --- common/database/database_update_manifest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/database/database_update_manifest.cpp b/common/database/database_update_manifest.cpp index b0a533a58..c272b53b4 100644 --- a/common/database/database_update_manifest.cpp +++ b/common/database/database_update_manifest.cpp @@ -6942,8 +6942,8 @@ CREATE TABLE `character_pet_name` ( .version = 9310, .description = "2025_03_7_expand_horse_def.sql", .check = "SHOW COLUMNS FROM `horses` LIKE 'helmtexture'", - .condition = "missing", - .match = "TINYINT(2)", + .condition = "empty", + .match = "", .sql = R"( ALTER TABLE `horses` ADD COLUMN `helmtexture` TINYINT(2) NOT NULL DEFAULT -1 AFTER `texture`;