Skip to content

Instantly share code, notes, and snippets.

@sankage
Created December 15, 2011 16:50
Show Gist options
  • Save sankage/1481825 to your computer and use it in GitHub Desktop.
Save sankage/1481825 to your computer and use it in GitHub Desktop.
Question & Answers associations
class Answer < ActiveRecord::Base
belongs_to :respondent
belongs_to :question
end
class Comment < ActiveRecord::Base
belongs_to :respondent
belongs_to :question
end
class Question < ActiveRecord::Base
has_many :comments
has_many :answers
end
class Respondent < ActiveRecord::Base
has_many :comments
has_many :answers
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment