Skip to content

Instantly share code, notes, and snippets.

@Laurentttrade
Forked from Joseph-N/_message.html.erb
Created February 2, 2016 15:59
Show Gist options
  • Select an option

  • Save Laurentttrade/cc616be44769473675ae to your computer and use it in GitHub Desktop.

Select an option

Save Laurentttrade/cc616be44769473675ae to your computer and use it in GitHub Desktop.
Tutorial code snippets for chat application in rails. Tutorial link http://goo.gl/l3e8zN
class CreateConversations < ActiveRecord::Migration
def change
create_table :conversations do |t|
t.integer :sender_id
t.integer :recipient_id
t.timestamps
end
add_index :conversations, :sender_id
add_index :conversations, :recipient_id
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment