Files
openfoodnetwork/db/migrate/20121115010717_create_enterprise_fees.rb
2012-11-15 13:42:55 +11:00

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