Given the following tables:
users
organizations
accounts
owner_id
owner_type
profiles
Where Accounts can be owned by either a User or an Organization, and each Account has exactly one Profile, is it possible to do STI in Rails on the Profile without needing a "type" field? IE, can I have OrganizationProfile and UserProfile classes that get loaded based on the ownership chain, or do I need to have a redundant "type" field on the profile?
This is not an answer, since it's not tested, but I wanted to try and I needed formatting.
For your code it makes more sense to me to have two scopes in
Profile
:If you want anyway those other classes you could do:
and so on with Organization profile.
In case joins is not working like that, try:
or
I am not sure ActiveRecord receives hash there.