20151222015912_create_suppliers.rb 456 B

12345678910111213
  1. class CreateSuppliers < ActiveRecord::Migration
  2. def change
  3. create_table :suppliers do |t|
  4. t.string :nick_name, null: false, limit: 255, default: ''
  5. t.string :phone, null: false, limit: 30, default: ''
  6. t.string :email, null: false, limit: 255, default: ''
  7. t.text :notes, null: false, default: ''
  8. t.belongs_to :contact, index:true, foreign_key: true
  9. t.integer :status, null: false, default: 1
  10. t.timestamps null: false
  11. end
  12. end
  13. end