Add transcendence_step to GridWeapons and GridSummons

This will allow the user to set the level of their transcendence for Eternals and Bahamut
This commit is contained in:
Justin Edmund 2023-01-02 15:58:40 -08:00
parent b46b1fbfd2
commit 253678f693
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,5 @@
class AddTranscendenceStepToGridCharacters < ActiveRecord::Migration[6.1]
def change
add_column :grid_characters, :transcendence_step, :integer, default: 0, null: false
end
end

View file

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