Tagged Questions
3
votes
3answers
1k views
Rails ActiveRecord relationships - has many and belongs to associations
I've created 3 models:
Article: contains an article
Tag: contains tags
ArticleTag: meant for associating a many-to-one tags to article relationship. It contains a tag_id and an article_id.
The ...