Created
August 30, 2011 19:41
-
-
Save Gregg/1181816 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Tweet < ActiveRecord::Base | |
has_many :categorizations | |
has_many :categories, through: :categorizations | |
end | |
class Categorization < ActiveRecord::Base | |
belongs_to :tweet | |
belongs_to :category | |
end | |
class Category < ActiveRecord::Base | |
has_many :categorizations | |
has_many :tweets, through: :categorizations | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment