Category has many products, videos, music etc.

When category in question will be destroyed, all stuff, associated with it, will be broken.

Sure, I can manually implement #before_destroy method of ActiveRecord, but, this is not good solution, i think.

Is there any Rails gem, that checks declared association of models with Category and prevent deletion, if something is associated with it?

link|improve this question

53% accept rate
it's generally considered Good Form to "accept" an answer if it helps solve your problem. Your accept rate is looking pretty low - so it'll help you too as people generally prefer to answer questions for people that have a higher accept rate. :) – Taryn East Nov 20 '11 at 9:43
feedback

2 Answers

This functionality comes standard with rails.

Use :dependent => :restrict when declaring your association.

See the doc here for more: http://apidock.com/rails/ActiveRecord/Associations/ClassMethods/has_many

link|improve this answer
1  
the question is how to prevent deletion not how to cascade it. – John Beynon Oct 25 '11 at 11:55
ah... just re-read it and yes, you are right. I got confused. Well, there's something for that too, with dependent => :restrict – Taryn East Oct 25 '11 at 20:58
1  
this is why i love SO - learn something new every day! Good call! – John Beynon Oct 25 '11 at 21:09
feedback

Option :dependent => :restrict does exactly this. Thanks

link|improve this answer
If you want to be absolutely sure it never happens (and you should!), add a database constraint. See dev.mysql.com/doc/refman/5.5/en/… or postgresql.org/docs/9.0/static/ddl-constraints.html – Leonid Shevtsov Oct 25 '11 at 12:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.