This will allow the user to set the level of their transcendence for Eternals and Bahamut
5 lines
179 B
Ruby
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
|