show/hide this revision's text 2 ON DELETE

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 -- 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, including migrations wrapped in transactions.

show/hide this revision's text 1

Yes.

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 -- 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, including migrations wrapped in transactions.