hensei-api/db/migrate/20230102234632_add_transcendence_step_to_grid_summons.rb
Justin Edmund 253678f693 Add transcendence_step to GridWeapons and GridSummons
This will allow the user to set the level of their transcendence for Eternals and Bahamut
2023-01-02 15:58:40 -08:00

5 lines
179 B
Ruby

class AddTranscendenceStepToGridSummons < ActiveRecord::Migration[6.1]
def change
add_column :grid_summons, :transcendence_step, :integer, default: 0, null: false
end
end