vote up 0 vote down star

I have a model in rails with one_to_many relationship. When I delete the father, I'd like to delete all childrens. How should I do it? I want to delete all orders and its items when I delete a user

My models are:

class User < ActiveRecord::Base
  has_many :orders, :foreign_key => "id_user"
end

class Order < ActiveRecord::Base
  has_many :order_items, :foreign_key => "id_pedido"
  belongs_to :user, :foreign_key => "id_usuer"
end

class OrderItem < ActiveRecord::Base
  belongs_to :order, :foreign_key => "id_pedido"
end
flag

80% accept rate

2 Answers

vote up 2 vote down check

jdl's answer is correct - you need to add :dependent => :destroy to both relationships - i.e. in your User class, add it to has_many :orders, and in your Order class, add it to has_many :order_items.

You might also want to change the MySQL behaviour wrt foreign keys, perhaps setting them to ON DELETE CASCADE.

link|flag
You are both right @jdl and @cite. What I was doing wrong was that I was calling the delete method besides the destroy method. Now everything works fine – Daniel Cukier Sep 10 at 13:07
vote up 0 vote down

What you're looking for is the :dependent => :destroy option on has_many.

has_many docs

link|flag
I tried it, but I get this: Cannot delete or update a parent row: a foreign key constraint fails (detam2.order_items, CONSTRAINT FKE3418DF1BA998374 FOREIGN KEY (id_order) REFERENCES orders (id)): DELETE FROM orders WHERE (id IN (31)) ActiveRecord::StatementInvalid: Mysql::Error: Cannot delete or update a parent row: a foreign key constraint fails (detam2.order_items, CONSTRAINT FKE3418DF1BA998374 FOREIGN KEY (id_order) REFERENCES pedidos (id)): DELETE FROM orders WHERE (id IN (31)) – Daniel Cukier Sep 10 at 0:51
You are both right @jdl and @cite. What I was doing wrong was that I was calling the delete method besides the destroy method. Now everything works fine – Daniel Cukier Sep 10 at 13:06

Your Answer

Get an OpenID
or

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