diff options
author | Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> | 2025-09-15 15:41:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-15 16:41:30 -0300 |
commit | f599c5c3a85c4292cc289cd3e534b46c3fbe29e8 (patch) | |
tree | a7e4e3a87b2d536c29745de132a5715f76d27695 | |
parent | a0deae6a4f8dddceee5756df3c61ca8b301ecb35 (diff) |
feat(DB): Add `VerifiedBuild` column for `creature_model_info` (#22934)
-rw-r--r-- | data/sql/updates/pending_db_world/cmi-verified-build.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/data/sql/updates/pending_db_world/cmi-verified-build.sql b/data/sql/updates/pending_db_world/cmi-verified-build.sql new file mode 100644 index 0000000000..a86d021415 --- /dev/null +++ b/data/sql/updates/pending_db_world/cmi-verified-build.sql @@ -0,0 +1,2 @@ +ALTER TABLE `creature_model_info` ADD COLUMN `VerifiedBuild` MEDIUMINT NULL DEFAULT NULL AFTER `DisplayID_Other_Gender`; +UPDATE `creature_model_info` SET `VerifiedBuild` = 0; |