Add Item SubType to data structures and DB

This commit is contained in:
Michael Cook (mackal)
2020-05-09 22:37:35 -04:00
parent 90e6bb8a8a
commit 0e6a0b5a70
10 changed files with 11 additions and 3 deletions
+1
View File
@@ -406,6 +406,7 @@
9150|2020_02_06_aa_reset_on_death.sql|SHOW COLUMNS FROM `aa_ability` LIKE 'reset_on_death'|empty|
9151|2020_03_05_npc_always_aggro.sql|SHOW COLUMNS FROM `npc_types` LIKE 'always_aggro'|empty|
9152|2020_03_09_convert_myisam_to_innodb.sql|SELECT * FROM db_version WHERE version >= 9152|empty|
9153|2020_05_09_items_subtype.sql|SHOW COLUMNS from `items` LIKE 'UNK219'|not_empty|
# Upgrade conditions:
# This won't be needed after this system is implemented, but it is used database that are not
@@ -0,0 +1 @@
ALTER TABLE `items` CHANGE `UNK219` `subtype` int(11) not null default '0';