Add quick summons column to GridSummons

This commit is contained in:
Justin Edmund 2023-03-15 04:29:02 -07:00
parent 8bef63d521
commit ee6b87887f

View file

@ -0,0 +1,5 @@
class AddQuickSummonToGridSummons < ActiveRecord::Migration[7.0]
def change
add_column :grid_summons, :quick_summon, :boolean, default: false, null: false
end
end