mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 07:18:37 +00:00
First step into implementing evolving items, added fields to database that were missing.
This commit is contained in:
@@ -346,6 +346,7 @@
|
||||
9090|2015_12_01_spell_scribe_restriction_rule.sql|SELECT `rule_name` FROM `rule_values` WHERE `rule_name` LIKE 'Character:RestrictSpellScribing'|empty|
|
||||
9091|2015_12_07_command_settings.sql|SHOW TABLES LIKE 'command_settings'|empty|
|
||||
9092|2015_12_17_eqtime.sql|SHOW TABLES LIKE 'eqtime'|empty|
|
||||
9093|2015_12_21_items_updates_evoitem.sql|SHOW COLUMNS FROM `items` LIKE 'evoitem'|empty|
|
||||
|
||||
# Upgrade conditions:
|
||||
# This won't be needed after this system is implemented, but it is used database that are not
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
ALTER TABLE `items`
|
||||
ADD COLUMN `evoitem` INT(11) NOT NULL DEFAULT '0' AFTER `purity`,
|
||||
ADD COLUMN `evoid` INT(11) NOT NULL DEFAULT '0' AFTER `evoitem`,
|
||||
ADD COLUMN `evomax` INT(11) NOT NULL DEFAULT '0' AFTER `evolvinglevel`,
|
||||
CHANGE `UNK038` `skillmodmax` INT(11) NOT NULL DEFAULT '0',
|
||||
CHANGE `UNK222` `heirloom` INT(11) NOT NULL DEFAULT '0',
|
||||
CHANGE `UNK235` `placeable` INT(11) NOT NULL DEFAULT '0',
|
||||
CHANGE `UNK242` `epicitem` INT(11) NOT NULL DEFAULT '0';
|
||||
Reference in New Issue
Block a user