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:
parent
6b85471443
commit
1fe527a7d5
|
@ -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
|
||||
);
|
|
@ -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;
|
Loading…
Reference in New Issue