Tagged Questions

Polymorphic association is a term used in discussions of Object-Relational Mapping with respect to the problem of representing in the relational database domain, a relationship from one class to multiple classes.

learn more… | top users | synonyms

17
votes
3answers
2k views

Possible to do a MySQL foreign key to one of two possible tables?

Well here's my problem I have three tables; regions, countries, states. Countries can be inside of regions, states can be inside of regions. Regions are the top of the food chain. Now I'm adding a ...
16
votes
3answers
4k views

ActiveRecord, has_many :through, and Polymorphic Associations

Folks, Want to make sure I understand this correctly. And please disregard the case for inheritance here (SentientBeing), trying to instead focus on polymorphic models in has_many :through ...
11
votes
3answers
268 views

Complex time-series statistical aggregation involving polymorphic associations

Ok. Bear with me, as I need to provide a lot of contextual detail before I can solicit a reasonable answer to my question. I have a site that allows you to make daily stock picks. The way it works ...
8
votes
7answers
277 views

What is the best way to keep this schema clear?

Currently I'm working on a RFID project where each tag is attached to an object. An object could be a person, a computer, a pencil, a box or whatever it comes to the mind of my boss. And of course ...
8
votes
10answers
610 views

Generic Database table design

Just trying to figure out the best way to design my table for the following scenario: I have several areas in my system (documents, projects, groups and clients) and each of these can have comments ...
8
votes
1answer
2k views

Why can you not have a foreign key in a polymorphic association?

Why can you not have a foreign key in a polymorphic association, such as the one represented below as a Rails model? class Comment < ActiveRecord::Base belongs_to :commentable, :polymorphic ...
7
votes
1answer
1k views

MySQL - Conditional Foreign Key Constraints

I have following 'comments' table in my app: comments -------- id INT foreign_id INT model TEXT comment_text TEXT ... the idea of this table is to store comments for various ...
7
votes
6answers
898 views

In a StackOverflow clone, what relationship should a Comments table have to Questions and Answers?

In an application similar to StackOverflow that I am building, I am trying to decide what relationship my Questions, Answers and Comments tables should have. I could have Questions and Answers both ...
6
votes
3answers
136 views

Polymorphic Associations in .NET

How do I effectively/efficiently create polymorphic associations in .NET? That being said, I have a few more granular questions that I would love to see as part of the broader answer. Technologies ...
6
votes
4answers
3k views

Rails Polymorphic Association with multiple associations on the same model

My question is essentially the same as this one: http://stackoverflow.com/questions/1168047/polymorphic-association-with-multiple-associations-on-the-same-model However, the proposed/accepted ...
5
votes
2answers
189 views

sqlalchemy use of inheritance in postgres

in an attempt to learn sqlalchemy (and python), i am trying to duplicate an already existing project, but am having trouble figuring out sqlalchemy and inheritance with postgres. here is an example ...
5
votes
3answers
957 views

Rails 3 - Nested resources and polymorphic paths: OK to two levels, but break at three

I'm trying to do a simple family reunion site with: "posts", "families", "kids", and "pictures". Ideally I'd like the routes/relationships to be structured this way: resources :posts do ...
5
votes
2answers
498 views

Rails: PolyMorphic or STI or something else for User management?

I've been banging my head against a wall trying to wrap my head around this, so any guidance would be much appreciated... I want to have a User system setup to reflect the following hierarchy: User ...
5
votes
3answers
2k views

accepts_nested_attributes_for with belongs_to polymorphic

I would like set up a polymorphic relation with accepts_nested_attributes_for. Here is the code: class Contact <ActiveRecord::Base has_many :jobs, :as=>:client end class Job ...
5
votes
1answer
529 views

Using polymorphic paths with nested associations

I have a polymorphic association that looks like this: class Line < ActiveRecord::Base belongs_to :item, :polymorphic => true end class Education < ActiveRecord::base has_many :lines, ...
5
votes
4answers
248 views

Database best practices

I have a table which stores comments, the comment can either come from another user, or another profile which are separate entities in this app. My original thinking was that the table would have ...
5
votes
6answers
3k views

Rails: Many to many polymorphic relationships

See comments for updates. I've been struggling to get a clear and straight-forward answer on this one, I'm hoping this time I'll get it! :D I definitely have a lot to learn still with Rails, however ...
5
votes
8answers
2k views

Something like inheritance in database design

Suppose you were setting up a database to store crash test data of various vehicles. You want to store data of crash tests for speedboats, cars, and go-karts. You could create three separate tables: ...
4
votes
2answers
518 views

Rails 3, Polymorphic Associations, and No Route Matches

I've been learning Rails for about 6 weeks now, so still a noob! I'm following Ryan Bates screencast on Polymorphic Associations, but I'm getting a "No Route Matches" error when navigating to ...
4
votes
1answer
193 views

Should I joint-index an ActiveRecord polymorphic association?

I have a metric table that I expect to be very large. It has a polymorphic association so that it can belongs_to other models that want to record some metric. I typically index association columns ...
4
votes
2answers
393 views

How to join across polymorphic tables in one query?

I have 2 polymorphic associations through which I need to query. I have a news_article table which has a polymorphic association to teams, players, etc. Those teams, players, etc have a polymorphic ...
4
votes
2answers
880 views

jpa join query on a subclass

I have the following relationships in JPA (hibernate). Object X has two subclasses, Y and Z. Object A has a manyToOne relationship to object X. (Note, this is a one-sided relationship so object X ...
4
votes
4answers
462 views

STI and polymorphs

I have problem with my code class Post < ActiveRecord::Base end class NewsArticle < Post has_many :comments, :as => :commentable, :dependent => :destroy, :order => 'created_at' end ...
4
votes
1answer
2k views

Ruby on Rails: :include on a polymorphic association with submodels

When working with a polymorphic association, is it possible to run an include on submodels that are only present in some types? Example: class Container belongs_to :contents, :polymorphic => ...
4
votes
2answers
810 views

Rails class name/type not working for a polymorphic has_many :through

I have an invoicing system that manages debits and credits. Basically the invoice amount is obtained by the sum of its debits and the balance is derived by taking the sum of its credits and ...
4
votes
2answers
142 views

Set of Foreign Keys Where All But One Are NULL

What is the name for the technique of using a set of foreign keys in a table where all but one are NULL for a given row? In other words, each row needs a foreign key to one (and only one) of n ...
4
votes
1answer
2k views

ActiveRecord::EagerLoadPolymorphicError: Can not eagerly load the polymorphic association

class Transaction < ActiveRecord::Base belongs_to :account, :polymorphic => true end class Bankaccount < ActiveRecord::Base has_many :transactions, :as => :account end class ...
4
votes
2answers
5k views

ActiveRecord - querying polymorphic associations

I am using polymorphic associations to track Comments in my project. All very straight forward stuff. The problem I have is in querying based on the polymorphic association and joinging from the ...
3
votes
1answer
66 views

Separate Polymorphic Association table

After reading the Ruby on Rails guides and a few of the stackoverflow responses to questions about polymorphic association I understand its use and implementation but I have a question about a ...
3
votes
1answer
237 views

ThinkingSphinx Polymorphic relation problem | rails 3.1

I could not create index with thinking_sphinx for the simple polymorphic schema below. (Note: I am able to create index from has_many models but I want to create my indexes from 'belongs_to' model ...
3
votes
1answer
93 views

Retrieving rows from one table with polymorphic associations

I have one model which has a polymorphic association with three other tables: class User < ActiveRecord::Base belongs_to :authenticatable, :polymorphic => true # == Schema Information # # ...
3
votes
1answer
192 views

Rails: has_many through with polymorphic association - will this work?

A Person can have many Events and each Event can have one polymorphic Eventable record. How do I specify the relationship between the Person and the Eventable record? Here are the models I have: ...
3
votes
1answer
294 views

Rails: Structuring a query involving a polymorphic association and STI

I'm trying to find the 10 most recent comments on photos so I can integrate them into an activity feed on my Rails 3.0.3 application. I've got a Photo model, which inherits from an Upload model using ...
3
votes
1answer
110 views

Database schema design - how to store specific application settings against entities

I'm trying to design some database tables to store configuration settings about certain entities and the applications they are associated with. I can get so far but have hit a "brick wall". I'll ...
3
votes
1answer
126 views

Comments for many different models: polymorphic or not? (Ruby on Rails)

I am building an app that allows comments on 5 unique models (Posts, Photos, Events, etc), with 2 or 3 more on the way. As it stands, each model has an associated comment model (PostComments, ...
3
votes
2answers
166 views

Foreign key constraint that points to one of several tables

I have a table with one column source_id whose value should be the primary key of another table, though which table it is will vary from record to record. Every record must have a value for ...
3
votes
1answer
532 views

RoR Achievement System - Polymorphic Association & Design Issues

I'm attempting to design an achievement system in Ruby on Rails and have run into a snag with my design/code. Attempting to use polymorphic associations: class Achievement < ActiveRecord::Base ...
3
votes
3answers
713 views

Rails Polymorphic has_many

Using Ruby on Rails, how can I achieve a polymorphic has_many relationship where the owner is always of a known but the items in the association will be of some polymorphic (but homogenous) type, ...
3
votes
3answers
282 views

MySQL: Two n:1 relations, but not both at once

Sorry for the title, it's difficult to explain. I need a data model similar to this: As you can see, a set can belong to both a user or a school. My problem: It should only be allowed to belong ...
3
votes
1answer
367 views

how to avoid polymorphic associations

Given you have to implement a news feed like the one seen in social networks, ex facebook. Currently I'm using a News class which has a polymorphic assocation which can be of any kind like Image, ...
3
votes
3answers
332 views

SQL Conditional / Case Joining / Polymorphic Associations?

I'm trying to implement something similar to Ruby on Rails' polymorphic relationships. I have the following three tables : Events Users Organisations An event can be owner by either a user or an ...
3
votes
3answers
1k views

Eager loading of polymorphic associations in ActiveRecord

This is my first time using Rails and I was wondering if it's possible to load a has one polymorphic association in one SQL query? The models and associations between them are basic enough: An Asset ...
2
votes
1answer
287 views

Rails 3: Find parent of polymorphic model in controller?

I'm trying to find an elegant (standard) way to pass the parent of a polymorphic model on to the view. For example: class Picture < ActiveRecord::Base belongs_to :imageable, :polymorphic => ...
2
votes
1answer
243 views

nested form with polymorphic models

I'm making an app with the following attributes, and I'm working on a creating a single form to be able to save a goal, a goal's tasks, a goal's milestones, and a milestone's tasks. ...
2
votes
2answers
106 views

Polymorphic Assocations using Integer ID type fields

I have a table Foo that has a polymorphic belongs_to association called bar. The foos table has the standard bar_id column. However, instead of a string-based bar_type column, I have an integer ...
2
votes
0answers
346 views

Eager loading a polymorphic association with Kaminara pagination

I'm trying to eager load a polymorphic association while also paginating using the Kaminari gem: @news_items = NewsItem.includes(:news_source).not_outdated .where(:group_id => ...
2
votes
1answer
266 views

My “has_many through” join model has nil reference after saving

I'm trying to create an object and adding an existing object to a "has_many through" association, but after saving my object the reference to my newly created object is set to nil in the join model. ...
2
votes
2answers
87 views

Multiple user types login

I am a new Ruby user, and have searched the forums, and although there are similiar questions posted, I was unable to fully relate. Hence, my question. I have a site that has 2 different types of ...
2
votes
1answer
514 views

how to generate migration to make references polymorphic

I have a Products table and want to add a column: t.references :imageable, :polymorphic => true I was trying to generate migration for this by doing: $ rails generate migration ...
2
votes
2answers
67 views

Whats the rails way of handling many-to-many?

Ok so I have a photos model and controller that handles photos.. I have two other models restaurant and dish that I want to be able to have photos handled by the photo model. So I created the photos ...

1 2 3 4 5 6