Tagged Questions
The has-many-polymorphs tag has no wiki summary.
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
740 views
Rails Has Many Through Polymorphic Checkboxes
This one's really getting me down! :(
I'm trying to make a nested model form for my User model with a checkbox list in it where multiple Stores can be checked or unchecked to administer the Stores ...
2
votes
1answer
166 views
HABTM Polymorphic Relationship
:)
I'm pretty new to Rails, and i'm trying to do a polymorphic HABTM relationship. The problem is that I have three models that I want to relate.
The first one is the Event model and then are two ...
2
votes
0answers
127 views
Conflicting associations in has_many_polymorphs
I'm using has_many_polymorphs to create a "Favorites" feature on a site where multiple users can post stories and make comments. I want users to be able to "favorite" stories and comments.
class User ...
2
votes
1answer
207 views
What does has_many_polymorphs mean by “Referential integrity violation”?
I have a has_many_polymorphs relationship between a Candidate and many events of various type. In particular, a Candidate creates a Created event when it is created.
class Candidate < ...
1
vote
1answer
95 views
has_many through and polymorphic relationships
I don't know if this is possible, but here goes:
FruitBasket
has_many :apples
has_many :bananas
######## What to put here to access Worm through its pest_holder relationship?
Apple
has_many ...
1
vote
2answers
137 views
rails3 model question
i moved from php to rails3, and i still think it was a good decision! Anyway I have some models:
users
questions
answers
question_id
votes
user_id
answer_id
model for users:
has_many :questions
...
1
vote
1answer
399 views
Rails self-referential has_many through
I'm trying to make a self-referential user class with three basic user types - parent, student, and tutor. A student belongs to a parent and can also belong to a tutor. Of course, the way I have it ...
1
vote
2answers
97 views
Rails: Trying to output the content of an object when you don't know what class the object belongs to
Preamble:
Don't be scared off by the fact My Rails 3 app uses the has_many_polymorphs gem as I don't think you need to be familiar with the gem in order to help me here :)
My code:
I have a Post ...
1
vote
0answers
343 views
Ruby on Rails 3: Combine results from multiple has_many or has_many_through associations
I have the following models. Users have UserActions, and one possible UserAction can be a ContactAction (UserAction is a polymorphism). There are other actions like LoginAction etc. So
class User ...
1
vote
1answer
232 views
has_many_polymorphs problem
i have problem with has_many_polymorphs, maybe you can help me.
I have some models
class Issue < ActiveRecord::Base
has_many_polymorphs :things, :from => [:applications], :through => ...
1
vote
2answers
460 views
Multiple has_many_polymorphs in one model
I'm trying to define multiple polymorphic relations (has_many_polymorphs plugin) from a single parent to same children.
Note has many viewers
Note has many editors
Viewers could be either Users or ...
1
vote
2answers
463 views
Rails has_many_polymorphs in reverse?
So I have some models set up that can each have a comment. I have it set up using has_many_polymorphs, but I'm starting to run into some issues where it's not working how I think it should.
For ...
0
votes
1answer
199 views
Polymorphic :has_many, :through as module in Rails 3.1 plugin
I've search everywhere for a pointer to this, but can't find one. Basically, I want to do what everyone else wants to do when they create a polymorphic relationship in a :has_many, :through way… but I ...
0
votes
1answer
38 views
Has_many for diferent classes
Here is the thing. Im working on a web game just for learning and i have this problem.
I have a Character who has many items, but the items can be equipable_items or usable_items (both from diferent ...
0
votes
0answers
52 views
Problem with Polymorphic has_many
I have the following table "participations":
id: integer
coupon_id: integer
participant_type: string
participant_id: integer
and I have the following models:
class Participation < ...
0
votes
0answers
31 views
has_many_polymorphs not respecting polymorphic type on selects
am running into a weird problem with acts_as_double_polymorphic_join that doesn't happen on my dev environment (os x, ree-1.8.7, rails 2.3.5, 2.2) but crops up in production (ubuntu 10.04, ree-1.8.7, ...
0
votes
1answer
300 views
Rails 3, has_many :through and :polymorphic - Should I need to do this?
Ok so here goes. I don't know if I'm over complicating things or if I'm just still so new to Rails that I don't understand the basics. What I want in sudo code is this:
User
has_many projects as ...
0
votes
0answers
96 views
How do I patch this error that has_many_polymorphs plugin is giving me?
I get this error when I load the page:
ActiveRecord::Associations::PolymorphicError in Videos#index
Showing /rubyprograms/dreamstill/app/views/videos/_video.html.erb where line #24 raised:
Could ...
0
votes
1answer
153 views
How to set up these CRUD controller actions for has_many_polymorphs and an error
I'm using the has_many_polymorphs plugin so that videos, topics, and users can be posted to profiles. Therefore, a profile has many "showable_objects" which can be videos, topics, and users. Also, the ...
0
votes
1answer
110 views
The has_many_polymorphs plugin is giving me this error
This is the error in my logs when I try to create a new model:
/rubyprograms/dreamstill/vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs/configuration.rb:7: Configuration is not a class ...
0
votes
0answers
183 views
:has_many :through => :polymorphic object problem
i'm currently transforming a rails application into a set of modules, and i'm stuck to a problem with a polymorphic :has_many :through association.
Let's say my module does that:
class Group < ...
0
votes
1answer
680 views
has_many :through, :source, :source_type returning empty array
I got some Manager and SoccerTeam model. A manager "owns" many soccer teams; also a manager can comment on soccer teams and can comment on other managers too:
manager.rb
# Soccer teams the manager ...
0
votes
1answer
177 views
acts_as_list postgres error on heroku
We are using has_many_polymorphs along with acts_as_list. Everything works fine locally, but on heroku, we get an error everytime a couple of acts_as_list methods are called. Namely those that update ...
0
votes
3answers
674 views
rails: has_many :through validation?
Rails 2.1.0 (Cannot upgrade for now due to several constraints)
I am trying to achieve this. Any hints?
A project has many users through join model
A user has many projects through join model
Admin ...
0
votes
1answer
168 views
has_many_polymorphs post install issue
immediately after has_many_polymorphs install with
ruby script/plugin install git://github.com/fauna/has_many_polymorphs.git
i start getting following error whenever i try to execute smth like ...
0
votes
4answers
283 views
has_many_polymorphs tagging - works on development machine, not on production!
I'm having a weird problem, where tagging works fine on my development machine, but when I deploy to the production server, I get this error in the log:
ActionView::TemplateError (undefined method ...