0
votes
1answer
99 views

Has_many for different classes

Here is the thing. I'm 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 ...
0
votes
1answer
580 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
1answer
304 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
185 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 ...
2
votes
1answer
251 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
526 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 ...