hensei-api/db/migrate/20240113181526_rename_summon_xlb_to_transcendence.rb
Justin Edmund 9cf8626752
Add support for weapon transcendence (#142)
* 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
2024-01-15 14:05:17 -08:00

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