* 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
5 lines
166 B
Ruby
5 lines
166 B
Ruby
class AddTranscendenceLevelToGridWeapon < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :grid_weapons, :transcendence_step, :integer, default: 0
|
|
end
|
|
end
|