Tagged Questions

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
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
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
1answer
303 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
154 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
111 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 ...