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:
parent
b46b1fbfd2
commit
253678f693
2 changed files with 10 additions and 0 deletions
|
|
@ -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
|
||||||
|
|
@ -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
|
||||||
Loading…
Reference in a new issue