* 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
207 B
Ruby
6 lines
207 B
Ruby
class AddTranscendenceToWeapon < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :weapons, :transcendence, :boolean, default: false
|
|
add_column :weapons, :transcendence_date, :datetime
|
|
end
|
|
end
|