- Adds series of migrations for changing the weapon's series to the values used by Cygames - Shuffled around some foreign keys
5 lines
129 B
Ruby
5 lines
129 B
Ruby
class AddNewSeriesToWeapons < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_column :weapons, :new_series, :integer
|
|
end
|
|
end
|