Yes. The ON DELETE [RESTRICT|CASCADE] keeps developers from stranding data, keeping the data clean. I recently joined a team of Rails developers who did not focus on database constraints such as foreign keys. Luckily, I found these: [http://www.redhillonrails.org/foreign_key_associations.html][1] -- RedHill on Rails plug-ins generate foreign keys using the "Convention over Configuration" style. A migration with *product_id* will create a foreign key to the *id* in the *products* table. Check out the other great plug-ins at [RedHill][2], including migrations wrapped in transactions. [1]: http://www.redhillonrails.org/foreign_key_associations.html [2]: http://www.redhillonrails.org/