Guest User

Untitled

a guest
Nov 21st, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. class CreateGroupConversationsUsersJoinTable < ActiveRecord::Migration[5.1]
  2. def change
  3. create_table :group_conversations_users, id: false do |t|
  4. t.integer :conversation_id
  5. t.integer :user_id
  6. end
  7. add_index :group_conversations_users, :conversation_id
  8. add_index :group_conversations_users, :user_id
  9. end
  10. end
Add Comment
Please, Sign In to add comment