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.
0
votes
2answers
11 views
rails has_many through and calling association in controller
When in my MechanicsController, the create action works, however, when I check the database, I notice that the taxi never gets a driver_id, I seem to never be able to get the taxi to contain both a ...
1
vote
1answer
12 views
Polymorphic associations : which migration file must I change?
I have two models : User and Product.
I want to add a third, the Location.
I created the Location model with : rails generate model Location address:string
Accordingly to the guide, I modify the ...
0
votes
1answer
16 views
polymorphic association with formtastic and mongo
I'm trying to create a relationship between two models in rails.
I have a Product and an Offer where an Offer belongs to a Product.
class Product
include Mongoid::Document
include ...
0
votes
0answers
14 views
Source Reflection Errors with has_many :through
I'm attempting to create a system where my site's users can favorites pages. Those pages have two types, either clubs or sports. So, I have four models, associated as such:
User Model:
class User ...
0
votes
0answers
8 views
Declarative authorization not working on polymorphic association
I've one message model which has a polymorphic association with two other model.I want to use the nested_in attribute of filter_resource_access for both my models.How can I achieve this?If anyone has ...
0
votes
1answer
30 views
+50
Implementing model subclasses - the correct way
I have an Event model and I want to create two subclasses of it: FixedEvent and TasksEvent
Event model has these attributes:
uid :string
title :string
starts_at :datetime
ends_at ...
0
votes
1answer
20 views
Rails 4 RC1 polymorphic association makes new address rather than updating existing address on update
This is a follow up to another polymorphic question I had up a couple days ago. I am creating a polymorphic association for an address. In this case I simply wanted to see if it would work in a ...
1
vote
0answers
39 views
JPA / Hibernate Query on polymorphic field
Given the following type hierachy:
@Entity
@Inheritance(strategy=InheritanceType.TABLE_PER_CLASS)
class A { }
@Entity
class B extends A {
String b;
}
@Entity
class C extends A {
String c;
}
...
0
votes
0answers
12 views
paperclip polymorphic nested multi file uploads
Not really any error messages, just no file uploaded!
Please help!!!!
everything get created and is fine apart from the file upload.
Models:
class Assets < ActiveRecord::Base
belongs_to ...
1
vote
1answer
60 views
Rails 3 polymorphic association with foreign_type column as integer
We have a certain problem with polymorphic relation in rails/activerecord.
As mentioned in an other question .
The reason we need this kind of polymorphic relation with a integer foreign_type column ...
0
votes
1answer
19 views
Fix inconsistency with polymorphic association
I have a polymorphic association in my model and it experienced an intermittent bug (in production) when it was created. I fixed it, but now I need to repair entries created under this bug.
My ...
3
votes
1answer
51 views
Route concern and polymorphic model: how to share controller and views?
Given the routes:
Example::Application.routes.draw do
concern :commentable do
resources :comments
end
resources :articles, concerns: :commentable
resources :forums do
resources ...
0
votes
1answer
41 views
Rails Polymorphic Associations
Total newbie to Rails and programming in general, so please forgive me if the answer to my question seems glaringly obvious. I've been doing a lot of reading including the ROR guides but can't seem to ...
1
vote
2answers
55 views
Who's responsible for creating associated has_many model in Rails?
I have "quick add" form that is responsible for creating a Foobar. Once it submits/saves, you are returned to the form to add the next Foobar. I now have polymorphic Tasks that I'm wanting to add to ...
0
votes
0answers
25 views
Best Way to Refactor Rails Models and Tables For Different Types of Questions
There is a Question model in my application for all types of questions. It has various fields, such as question_text. Different types of questions have different kinds of answers (such as text_answer ...
0
votes
2answers
42 views
Setting up a parent and child model but child has it's own columns
I am trying to set up a structure with a parent that has some attributes and children models that inherit those attributes as well as maintain their own.
Ideally I'd like a setup of
class Parent
...
0
votes
0answers
25 views
Rails many-to-many polymorphic joins
Vacancies has many skills. And Candidate has many skills too. I need to get all vacancies for candidate with any his skills.
class Skill < ActiveRecord::Base
has_many :assignments
has_many ...
0
votes
1answer
24 views
rails news feed with polymorphic
I'm creating a social network using rails, the social has users that can posts pictures, comment on pictures, check-in places etc.
I have created a table called activities that contains those fields ...
1
vote
1answer
36 views
Changing an existing has_many relation to polymorphic in Rails 3
I've got an existing has_many relation between two models - call them 'cars' and 'passengers' - with a few thousand 'passengers' belonging to a few hundred 'cards' in my production environment. I'm ...
0
votes
0answers
29 views
Rails: Rendering a Namespaced Polymorphic Partial
I have a polymorphic model called Update. Typically, I can render its associated updatable model with a simple:
<%= render @update.updatable %>
Unfortunately, if I'm calling this method from ...
0
votes
1answer
33 views
Rails ActiveRecord - Updating polymorphic id
I have an app where I have three models. I have leads and customers which are very similar (but different enough that they warranted their own models). Then I have a polymorphic model called ...
0
votes
1answer
28 views
how to serialize polymorphic to-many Core Data relationship with RestKit?
I need to serialize a Core Data class (Questionnaire) which has a to-many relationship (questions) to an abstract entity (Question).
Question is the parent entity for a number of concrete subclasses ...
0
votes
2answers
41 views
Polymorphic Association - Deleting comments
I am creating an application that allows users to make comments on project postings created. I followed this Railscast to set up polymorphic associations.
Everything works great per tutorial, but I ...
0
votes
3answers
30 views
Polymorphic Association - How to create a main index page
I am creating an application that allows users to make comments on project postings created. I followed this Railscast to set up polymorphic associations.
Based on the tutorial, the index page in ...
0
votes
0answers
17 views
Where to begin validating polymorphic associations?
Using what seems to be a canonical example:
class Comment < ActiveRecord::Base
belongs_to :commentable, :polymorphic => true
end
class Question < ActiveRecord::Base
...
0
votes
1answer
34 views
How to use use polymorphic associations across namespaced models?
I understand how you can use the class_name option in active directory to refer to namespaces models:
has_one :slide, :class_name => '::Refinery::Slides::Slide'
And how to use polymorphic ...
1
vote
1answer
43 views
PK on table with (simulated) polymorphic association
I am trying to set up the right indices on a table I have just created which contains 4 "polymorphic associations" and a PK ID. The 4 associations allow me not to have to quadruple the number of ...
0
votes
1answer
27 views
Polymorphic Associations or something easier
This is my first post and I can't seem to find the answer anywhere....
I have a database that has multiple companies,each company has multiple locations.
I'm running into problems trying to define ...
0
votes
1answer
38 views
Rails - 1 User model, but 2 Profile type models?
Just finished Michael Hartl's Tutorial, so this is kind of a newbie question. But, after lots of searching, I have not yet been convinced of a good solution for this:
I have a single User model that ...
0
votes
1answer
27 views
Rails multiple nested resources edit link not adding primary resource
I'm using multiple nested resources like so:
resources :users do
resources :clients do
resources :positions
end
end
resources :clients
resources :positions
Everything is ...
0
votes
0answers
33 views
Rails has_many through polymorphic mass assignment creating records twice
Rails 3.2.9
Ruby ruby 1.9.3dev (2011-09-23 revision 33323) [i686-linux]
Models:
class Client < ActiveRecord::Base
attr_accessible :first_name, :middle_name, :surname
# Reference: ...
0
votes
1answer
26 views
Override has_many << function
I have some classes in a Rails 2 application: a Group have some group_items. Each group_item has a polymorphic ìtem : user or contact.
class Group < AR::Base
has_many :group_items
has_many ...
0
votes
0answers
221 views
How to build Models for (possibly) polymorphic relationship with Laravel's Eloquent ORM
I have a question regarding Eloquent ORM -- in this case, specifically being used with Laravel 4. I have had no problem using it to run basic queries and relationships, but I'm recently stumped on ...
0
votes
1answer
41 views
Polymorphic user model when using devise
I am building a job board and therefore have two user models and employer and an applicant.
I am using devise and therefore my challenge now is to use this with the polymorphic relationship.
Through ...
0
votes
1answer
76 views
Rails upload form with carrierwave and polymorphic associations
I'm trying to wrap my head around using polymorphic associations to make file management less repetitive in a simple rails app. I'm using carrierwave to handle the file uploading. Here's what I have ...
2
votes
0answers
41 views
Combine polymorphic include conditions
Using Rails 3. I have the following code:
@reviews = @user.reviews.includes(:user, :reviewable => :photos).where(:reviewable_type => "Shop")
@reviews = @user.reviews.includes(:user, :reviewable ...
0
votes
1answer
49 views
has_one/has_many with dependent destroy but using a different name for the key
So I'm looking at someone's code which has the following (paraphrased):
class user
has_one :connection, :dependent => :destroy
has_one :second_user, :through => :connection, :class_name ...
0
votes
0answers
10 views
Polymorphic association and inheritance
I'm trying to implement a polymorphic association with a couple of classes that inherit from a base one (I'm not using STI)
class BaseWarning < ActiveRecord::Base
end
class StabilityWarning < ...
0
votes
1answer
34 views
Polymorphic Association ids, has_one and uniqueness
I have a polymorphic association, where an Admin and a Developer each have a User (for a common authentication mechanism)
Developer.rb
class Developer < ActiveRecord::Base
attr_accessible ...
0
votes
1answer
32 views
foreign key not updating
I'm developing an app for college where a user can log on & upload details of a hiking trail.
So far everything is working & I have also implemented a nested form for photos in each hiking ...
1
vote
1answer
84 views
Rails model with two polymorphic has_many through: associations for object tagging
My schema has Articles and Journals that can be tagged with Tags. This requires a has_many through: association with a polymorphic relationship to my Tagging join table.
Okay, that's the easy and ...
1
vote
1answer
71 views
undefined method in form_for using polymorphic association in Rails 3
Let me explain what I'm trying to do, then ask my question. I'm a total newbie with Ruby/Rails, but an experienced developer.
What I want: I want to have developers, customers and admins. I want a ...
0
votes
1answer
60 views
Rails 3 Polymorphic nested attributes
I am trying to build a polymorphic relationship from a nested form that's backwards to all the examples I've found. I am hoping someone to point out the error of my ways.
class Container < ...
0
votes
1answer
31 views
Displaying Current User in view through a polymorphic association
I am attempting to display the current users name once they are logged in.
Therefore at the top of the page it would say "Logged in as Patrick". However I have a polymorphic association set up ...
0
votes
1answer
84 views
Rails polymorphic associations - has_many condition error
I'm using rails 3.2.8 and i'm having some troubles with polymorphic associations.
I have a model activity that it is polymorphic that is related with another polymorphic model contribution that can be ...
0
votes
1answer
25 views
Filtering associated polymorphic models
I have Favorite model which allows Entries and Feeds to be saved by users.
class User < ActiveRecord::Base
has_many :favorites
has_many :favorite_feeds, :through => :favorites, :source ...
0
votes
1answer
32 views
Rails routes with polymorphic and owner relationships
I have a rails app where Users can create Programs and other things yet to come, we'll say Plans (hypothetically).
Users can also like Programs and Plans. (Like is polymorphic)
I am trying to figure ...
0
votes
1answer
31 views
Separate two types of polymorphic association in view
I have polymorphic association between Teams and Player that belongs to Tags and each tag belongs to an article.
class Tag < ActiveRecord::Base
attr_accessible :article_id, :tagable_id, ...
0
votes
0answers
77 views
Rails: delete polymorphic STI has_many through association fails
I have a model called User which has many "taxonomies" associated through a Classification model. One of these taxonomies is a model called Topic (inheriting from Taxonomy). My model User is also ...
1
vote
0answers
53 views
Saving parent object with has_one association to polymorphic child in one go gives error
I'm trying to save a parent object (Report) and the associated polymorphic child (Attachment) in one go - the association is a 'has_one'.
I'm using the '.create' method on the Report with a params ...
