[Database] Add heal_amount to character_stats_record (#4986)

* [Database] Add heal_amount to character_stats_record

* Update version.h
This commit is contained in:
Alex King
2025-08-16 21:35:55 -04:00
committed by GitHub
parent 1fe5d9fa4f
commit 207ee2daa0
4 changed files with 117 additions and 93 deletions
@@ -7160,6 +7160,17 @@ ALTER TABLE loottable_entries
)",
.content_schema_update = true
},
ManifestEntry{
.version = 9327,
.description = "2025_08_13_character_stats_record_heal_amount.sql",
.check = "SHOW COLUMNS FROM `character_stats_record` LIKE 'heal_amount'",
.condition = "empty",
.match = "",
.sql = R"(
ALTER TABLE `character_stats_record`
ADD COLUMN `heal_amount` int(11) NULL DEFAULT 0 AFTER `spell_damage`;
)"
},
// -- template; copy/paste this when you need to create a new entry
// ManifestEntry{