Added: - Weapon Key 3 - AX Modifier and Strength - Perpetuity (on Characters) - Slot and Group on WeaponKeys
5 lines
195 B
Ruby
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
|