mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
12 lines
222 B
Ruby
12 lines
222 B
Ruby
class CreateEnterpriseFees < ActiveRecord::Migration
|
|
def change
|
|
create_table :enterprise_fees do |t|
|
|
t.references :enterprise
|
|
t.string :fee_type
|
|
t.string :name
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|