5299966837
With FAIL, triggers choke but leave the changes in despite. We need to have the current statement undone, however.
9 lines
332 B
SQL
9 lines
332 B
SQL
CREATE TRIGGER x_changedTransfer
|
|
BEFORE UPDATE OF timestamp, credId, billId, amount ON Transfer -- Allow update of note
|
|
WHEN OLD.amount IS NOT NULL
|
|
AND NOT EXISTS (SELECT * FROM __INTERNAL_TRIGGER_STACK)
|
|
BEGIN
|
|
SELECT RAISE(ABORT, "Transfer cannot be updated, but needs to be replaced to make triggers run");
|
|
END;
|
|
|