You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
425 B
SQL
14 lines
425 B
SQL
-- Remove legacy weapons/armor catalog tables. All item definitions live in public.gear;
|
|
-- heroes are equipped via hero_gear only.
|
|
|
|
ALTER TABLE public.heroes
|
|
DROP CONSTRAINT IF EXISTS heroes_weapon_id_fkey,
|
|
DROP CONSTRAINT IF EXISTS heroes_armor_id_fkey;
|
|
|
|
ALTER TABLE public.heroes
|
|
DROP COLUMN IF EXISTS weapon_id,
|
|
DROP COLUMN IF EXISTS armor_id;
|
|
|
|
DROP TABLE IF EXISTS public.weapons;
|
|
DROP TABLE IF EXISTS public.armor;
|