hensei-api/db/migrate/20220302054003_add_weapon_key3_to_grid_weapons.rb
Justin Edmund e7e0cd790b Add cols for supporting Granblue weapon mechanics
Added:
- Weapon Key 3
- AX Modifier and Strength
- Perpetuity (on Characters)
- Slot and Group on WeaponKeys
2022-03-01 23:19:28 -08:00

5 lines
195 B
Ruby

class AddWeaponKey3ToGridWeapons < ActiveRecord::Migration[6.1]
def change
add_reference :grid_weapons, :weapon_key3, type: :uuid, foreign_key: { to_table: :weapon_keys }
end
end