Merge branch 'armor-org-fix-2' into 'master'

Migration for missed backpacks

See merge request veloren/veloren!1841
This commit is contained in:
Samuel Keiffer 2021-03-02 04:27:44 +00:00
commit 23dd98bf42
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1 @@
-- This file should undo anything in `up.sql`

View File

@ -0,0 +1,22 @@
UPDATE item
SET item_definition_id = 'common.items.armor.misc.bag.heavy_seabag' WHERE item_definition_id = 'common.items.armor.bag.heavy_seabag';
UPDATE item
SET item_definition_id = 'common.items.armor.misc.bag.knitted_red_pouch' WHERE item_definition_id = 'common.items.armor.bag.knitted_red_pouch';
UPDATE item
SET item_definition_id = 'common.items.armor.misc.bag.liana_kit' WHERE item_definition_id = 'common.items.armor.bag.liana_kit';
UPDATE item
SET item_definition_id = 'common.items.armor.misc.bag.mindflayer_spellbag' WHERE item_definition_id = 'common.items.armor.bag.mindflayer_spellbag';
UPDATE item
SET item_definition_id = 'common.items.armor.misc.bag.reliable_backpack' WHERE item_definition_id = 'common.items.armor.bag.reliable_backpack';
UPDATE item
SET item_definition_id = 'common.items.armor.misc.bag.soulkeeper_cursed' WHERE item_definition_id = 'common.items.armor.bag.soulkeeper_cursed';
UPDATE item
SET item_definition_id = 'common.items.armor.misc.bag.soulkeeper_pure' WHERE item_definition_id = 'common.items.armor.bag.soulkeeper_pure';
UPDATE item
SET item_definition_id = 'common.items.armor.misc.bag.tiny_leather_pouch' WHERE item_definition_id = 'common.items.armor.bag.tiny_leather_pouch';
UPDATE item
SET item_definition_id = 'common.items.armor.misc.bag.tiny_red_pouch' WHERE item_definition_id = 'common.items.armor.bag.tiny_red_pouch';
UPDATE item
SET item_definition_id = 'common.items.armor.misc.bag.troll_hide_pack' WHERE item_definition_id = 'common.items.armor.bag.troll_hide_pack';
UPDATE item
SET item_definition_id = 'common.items.armor.misc.bag.woven_red_bag' WHERE item_definition_id = 'common.items.armor.bag.woven_red_bag';