BF [2797787] - Cannot delete line on PO generated from SO

https://sourceforge.net/tracker/?func=detail&atid=879332&aid=2797787&group_id=176962
This commit is contained in:
Carlos Ruiz 2009-08-13 15:32:42 +00:00
parent 6b85471443
commit 1fe527a7d5
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,7 @@
ALTER TABLE c_orderline DROP CONSTRAINT linkorderline_corderline;
ALTER TABLE c_orderline
ADD ( CONSTRAINT linkorderline_corderline FOREIGN KEY (link_orderline_id)
REFERENCES c_orderline (c_orderline_id)
ON DELETE CASCADE
);

View File

@ -0,0 +1,6 @@
ALTER TABLE c_orderline DROP CONSTRAINT linkorderline_corderline;
ALTER TABLE c_orderline
ADD CONSTRAINT linkorderline_corderline FOREIGN KEY (link_orderline_id)
REFERENCES c_orderline (c_orderline_id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE SET NULL;