* Add migrations * Add weapon key 4 column * Update schema.rb * Add transcendence date to weapon * Rename summon XLB to match weapon * Update blueprints * Update search * Accept weapon transcendence step * Update XLB to transcendence for summons * Add logic for transcending weapons * Add transcendence step to weapon blueprint
6 lines
199 B
Ruby
6 lines
199 B
Ruby
class RenameSummonXlbToTranscendence < ActiveRecord::Migration[7.0]
|
|
def change
|
|
rename_column :summons, :xlb, :transcendence
|
|
rename_column :summons, :xlb_date, :transcendence_date
|
|
end
|
|
end
|