don't delete if has_many > 0

Try something like this in your model:

def before_destroy   raise "Type as associated products" if products.count > 0 end

Steve