Draconic Weapons Providence can have original Draconic Weapon keys, but also have a new key that can only be equipped to them. Thanks, Cygames.
13 lines
270 B
Ruby
13 lines
270 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MigrateSeries < ActiveRecord::Migration[7.0]
|
|
def up
|
|
WeaponKey.find_each do |weapon_key|
|
|
weapon_key.update(new_series: [weapon_key.series])
|
|
end
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|