Tagged Questions
2
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 ...
1
vote
2answers
580 views
Multi level associations in rails
I am creating an application to track football teams through out the season. but i am stuck on the design of the database. One fixture has a home team and an away team. I have created a fixture model ...
1
vote
1answer
180 views
ROR Model Setup Question: Table Relationships
I'm developing a site that will have a model for users, a model for submissions, and a model for ratings. Each submission may have only one rating per user. My question is how should I set this up in ...
1
vote
2answers
1k views
limitations of :finder_sql
In a rails app, I using the :finder_sql option in a has_many declaration. The rails docs say that when I do this, "find_in_collection is not added." What does this mean?
0
votes
1answer
73 views
Polymorphic Relationship Table Queries in Rails — find object by multiple
I have a relationship table in a rails application called edit_privileges, in which the User is the "editor" and a number of other classes are "editable". Let's say that two of those classes are ...
0
votes
2answers
222 views
Rails database relationships
I have three models that I want to interact with each other.
Kase, Person and and Company.
I have (I think) setup the relationships correctly:
class Kase < ActiveRecord::Base
#HAS ONE COMPANY
...