Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dependent: :destroy to Spree::Order#order_promotions #5411

Merged
merged 2 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/app/models/spree/order.rb
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def states
foreign_key: :order_id,
dependent: :destroy,
inverse_of: :order
has_many :order_promotions, class_name: 'Spree::OrderPromotion'
has_many :order_promotions, class_name: 'Spree::OrderPromotion', dependent: :destroy
has_many :promotions, through: :order_promotions

# Payments
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class AddOrderPromotionsForeignKey < ActiveRecord::Migration[7.0]
def up
Spree::OrderPromotion.left_joins(:order).where(spree_orders: { id: nil }).delete_all
add_foreign_key :spree_orders_promotions, :spree_orders, column: :order_id, validate: false, on_delete: :cascade
end

def down
remove_foreign_key :spree_orders_promotions, :spree_orders
end
end
14 changes: 14 additions & 0 deletions core/spec/models/spree/order_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1818,4 +1818,18 @@ def validate(line_item)
end
end
end

describe "order deletion" do
let(:order) { create(:order) }
let(:promotion) { create(:promotion) }

subject { order.destroy }
before do
order.promotions << promotion
end

it "deletes join table entries when deleting an order" do
expect { subject }.to change { Spree::OrderPromotion.count }.from(1).to(0)
end
end
end
Loading