Skip to content

Commit

Permalink
Merge pull request #8433 from ehuelsmann/fix/master/delete-order-quote
Browse files Browse the repository at this point in the history
Make sure tax records are deleted when orders/quotes are
  • Loading branch information
ehuelsmann authored Oct 14, 2024
2 parents 83febef + bf5ecca commit 4084f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/changes/1.12/add-stored-order-quote-taxes.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


create table oe_tax (
oe_id int not null references oe (id),
oe_id int not null references oe (id) on delete cascade,
tax_id int not null references account (id),
basis numeric not null,
exempt smallint not null default 0,
Expand Down

0 comments on commit 4084f7a

Please sign in to comment.