mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
14 lines
324 B
Ruby
14 lines
324 B
Ruby
class CreateEnterpriseGroups < ActiveRecord::Migration
|
|
def change
|
|
create_table :enterprise_groups do |t|
|
|
t.string :name
|
|
t.boolean :on_front_page
|
|
end
|
|
|
|
create_table :enterprise_groups_enterprises, id: false do |t|
|
|
t.references :enterprise_group
|
|
t.references :enterprise
|
|
end
|
|
end
|
|
end
|