0
votes
2answers
72 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 …
0
votes
2answers
111 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 basi …
0
votes
1answer
33 views
A polymorphic object that belongs to a quasi-STI object: object_type is incorrect
Consider:
class Person < ActiveRecord::Base
class << self
def setup
has_one :address, :as => :addressable
end
end
end
class Employee < Person
s …
0
votes
1answer
89 views
Problem with polymorphic association in Rails
Hi, guys!
I am trying to follow Ryan Bates screencast but have an error message. I did the following:
1) Create table
class CreateComments < ActiveRecord::Migration
def self …
0
votes
1answer
44 views
Setting up polymorphic associations in db when the super is a FK of subclasses?
Using class table inheritance it is recommended that the subclass refers to the superclass and not the other way around. Normally in Rails polymorphic associations work in the oth …
1
vote
2answers
151 views
Polymorphic Association with multiple associations on the same model
I'm slightly confused about a polymorphic association I've got. I need an Article model to have a header image, and many images, but I want to have a single Image model. To make ma …
1
vote
3answers
69 views
How do I define ActiveRecord relationships between two models that relate to each other in two different ways?
In my app I have the classes User, Video, and Vote. Users and Videos can relate to each other in two different ways: as a one-to-many or as a many-to-many. The former is when a …
0
votes
0answers
88 views
rails polymorphic nested form AssociationTypeMismatch
Unluckily I can't get this relative simple stuff to work.... :-(
models:
class User < ActiveRecord::Base
belongs_to :role, :polymorphic => true
class Admin < ActiveRecor …
3
votes
5answers
705 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 …
0
votes
2answers
115 views
Best way to model a user’s “friendship” with different entities?
I have the following entities:
User
Company
Organization
Users need to be able to add Users, Companies, Organizations, and future party objects to their friend list.
My origin …
1
vote
1answer
195 views
Rails Polymorphic relationship and link_to
Here's my Schema
class Menu < ActiveRecord::Base
belongs_to :menuable, :polymorphic => true
end
class Page < ActiveRecord::Base
has_one :menu, :as => :menuable
en …
1
vote
1answer
140 views
How can I optimize this MySQL query that involves two left joins?
I cannot figure out why my query slows down. What it boils down to are four tables: team, player, equipment, and metadata. Records in player and equipment have a FK to team, mak …
1
vote
2answers
152 views
MySQL Multiple select
I have an indextable which hold a content_id and type colomn.
(eg. content_id=1, type=audio. content_id=1, type=video) Would it be possible to get the right data based upon conten …
3
votes
2answers
465 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 :commentabl …
0
votes
1answer
137 views
Polymorphic Rails Associations (going backwards?)
Hi, I have a many to one polymorphic rails association in my rails app for a 'case' model. There are many things that have cases, so I access the case each thing has by doing 'thi …
