feat(Core): Allow negative resistance values (#12958)

* feat(Core): Allow negative resistance values

* Add SQL
This commit is contained in:
ZhengPeiRu21
2022-09-25 07:45:22 -06:00
committed by GitHub
parent 91daa6cb78
commit fbf65ebc9d
3 changed files with 19 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
-- Alter AzerothCore table to support Vanilla negative resistance values
ALTER TABLE item_template MODIFY fire_res SMALLINT;
ALTER TABLE item_template MODIFY holy_res SMALLINT;
ALTER TABLE item_template MODIFY nature_res SMALLINT;
ALTER TABLE item_template MODIFY frost_res SMALLINT;
ALTER TABLE item_template MODIFY shadow_res SMALLINT;
ALTER TABLE item_template MODIFY arcane_res SMALLINT;