I've got a model, Favorite, that I'm trying to remove from the
database by calling the destroy method on it. What's noteworthy about
this model is that it doesn't have an id column. The unique index on
the Favorites table is a both the user_id and the article_id. A
favorite belongs to a user and an article.
So in my destroy method of my Favorites Controller, I first retrieve
the favorite to delete:
If this is not a legacy table I would recommend adding the ID column
and make it your primary key. It will simplify things. You could still
have a unique key on article and user that you can use to your hearts
content. If that's the way you are going I would add an index on those
2 columns since I'm guessing you would be doing most of your DB access
using those fields.
One benefit of adding the ID would show up if you create a child table
that depends on FAVORITES. You would add a field called 'favority_id'
on the child table and use 'has_*' and 'belongs_to' and everything
would be handled for you by Rails.
pepe, this is not a legacy table so I think I'm just going to add the
id and not fight conventions. The table is really just a link
table...linking a user to an article and calling it a favorite.
Nothing more...and that's why I went with the composite key.
At least I know this could work with a gem though. Thanks again.
pepe, this is not a legacy table so I think I'm just going to add the
id and not fight conventions. The table is really just a link
table...linking a user to an article and calling it a favorite.
Nothing more...and that's why I went with the composite key.
At least I know this could work with a gem though. Thanks again.
or if it is just destroying that's a problem you could just add a
method that runs
delete from favourites where user_id = x AND article_id = y
You've arrived at the same conclusion: Rails expects an id field, and we
all know that you can't fight Rails convention. But don't overlook all
the goodies you get by declaring :has_many :through.
pepe, this is not a legacy table so I think I'm just going to add the
id and not fight conventions. The table is really just a link
table...linking a user to an article and calling it a favorite.
Nothing more...and that's why I went with the composite key.
Seems reasonable. I've used composite_primary_keys and it works very
well. I don't think you need to add the id in this case.
At least I know this could work with a gem though. Thanks again.