mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-02 02:11:33 +00:00
17 lines
298 B
Ruby
17 lines
298 B
Ruby
class AddSupplier < ActiveRecord::Migration
|
|
def change
|
|
create_table :suppliers do |t|
|
|
t.string :name
|
|
t.string :description
|
|
t.string :url
|
|
t.string :email
|
|
t.string :twitter
|
|
t.string :website
|
|
|
|
t.integer :address_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|