Files
old-ribica/back-office/db/migrate/20150314033113_create_suppliers.rb
2015-03-14 06:33:49 +01:00

17 lines
334 B
Ruby

class CreateSuppliers < ActiveRecord::Migration
def change
create_table :suppliers do |t|
t.string :name
t.string :address
t.string :postal_code
t.string :town
t.string :phone
t.string :contact_person
t.string :email
t.text :note
t.timestamps null: false
end
end
end