hensei-api/db/migrate/20240113175229_add_transcendence_level_to_grid_weapon.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

5 lines
166 B
Ruby

class AddTranscendenceLevelToGridWeapon < ActiveRecord::Migration[7.0]
def change
add_column :grid_weapons, :transcendence_step, :integer, default: 0
end
end