hensei-api/db/migrate/20220224024415_add_group_to_raids.rb
Justin Edmund 3cb18aa8ef Add group to raids
This is so that we can group them easier on the front end instead of receiving a long list
2022-02-23 19:04:12 -08:00

5 lines
124 B
Ruby

class AddGroupToRaids < ActiveRecord::Migration[6.1]
def change
add_column :raids, :group, :integer
end
end