This is so that we can group them easier on the front end instead of receiving a long list
5 lines
124 B
Ruby
5 lines
124 B
Ruby
class AddGroupToRaids < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :raids, :group, :integer
|
|
end
|
|
end
|