Guest User

Untitled

a guest
Nov 21st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class CreateContacts < ActiveRecord::Migration[5.1]
  2. def change
  3. create_table :contacts do |t|
  4. t.belongs_to :user, index: true
  5. t.belongs_to :contact, index: true
  6. t.boolean :accepted, default: false
  7.  
  8. t.timestamps
  9. end
  10. end
  11. end
Add Comment
Please, Sign In to add comment