20151221190718_create_contacts.rb 511 B

1234567891011121314
  1. class CreateContacts < ActiveRecord::Migration
  2. def change
  3. create_table :contacts do |t|
  4. t.belongs_to :customer, index:true, foreign_key: true
  5. t.string :name, null: false, limit: 255, default: ''
  6. t.string :last_name, null: false, limit: 255, default: ''
  7. t.string :phone, null: false, limit: 30, default: ''
  8. t.string :email, null: false, limit: 255, default: ''
  9. t.text :notes, null: false, default: ''
  10. t.integer :status, null: false, default: 1
  11. t.timestamps null: false
  12. end
  13. end
  14. end