Skip to content

Instantly share code, notes, and snippets.

@pramatias
Created January 12, 2011 13:26
Show Gist options
  • Save pramatias/776160 to your computer and use it in GitHub Desktop.
Save pramatias/776160 to your computer and use it in GitHub Desktop.
#app/models/chatter.rb
class Chatter < ActiveRecord::Base
has_one :chats
end
#app/models/chat.rb
class Chat < ActiveRecord::Base
belongs_to :chatter, :foreign_key => 'chatter_id'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment