mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 18:52:22 +00:00
Fix column cases to make people happy
If you already sourced, too fucking bad.
This commit is contained in:
@@ -379,7 +379,7 @@
|
||||
9123|2018_07_07_data_buckets.sql|SHOW TABLES LIKE 'data_buckets'|empty|
|
||||
9124|2018_07_09_tasks.sql|SHOW COLUMNS FROM `tasks` LIKE 'type'|empty|
|
||||
9125|2018_07_20_task_emote.sql|SHOW COLUMNS FROM `tasks` LIKE 'completion_emote'|empty|
|
||||
9126|2018_09_07_FastRegen.sql|SHOW COLUMNS FROM `zone` LIKE 'FastRegenHP'|empty|
|
||||
9126|2018_09_07_FastRegen.sql|SHOW COLUMNS FROM `zone` LIKE 'fast_regen_hp'|empty|
|
||||
|
||||
# Upgrade conditions:
|
||||
# This won't be needed after this system is implemented, but it is used database that are not
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
ALTER TABLE `zone` ADD `FastRegenHP` INT NOT NULL DEFAULT '180';
|
||||
ALTER TABLE `zone` ADD `FastRegenMana` INT NOT NULL DEFAULT '180';
|
||||
ALTER TABLE `zone` ADD `FastRegenEndurance` INT NOT NULL DEFAULT '180';
|
||||
ALTER TABLE `zone` ADD `fast_regen_hp` INT NOT NULL DEFAULT '180';
|
||||
ALTER TABLE `zone` ADD `fast_regen_mana` INT NOT NULL DEFAULT '180';
|
||||
ALTER TABLE `zone` ADD `fast_regen_endurance` INT NOT NULL DEFAULT '180';
|
||||
|
||||
Reference in New Issue
Block a user