- rename migration so it happens first - postdeployment database migrator now migrates database and data migrations in chronological order
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
|