treasuredb/schema/triggers/x_spentFromBeginning.sql
Florian "flowdy" Heß 5299966837 Changed FAIL -> ABORT trigger exceptions
With FAIL, triggers choke but leave the changes in despite. We need to have the current statement undone, however.
2017-02-22 21:58:47 +01:00

8 lines
161 B
SQL

CREATE TRIGGER x_spentFromBeginning
BEFORE INSERT ON Credit
BEGIN
SELECT RAISE(ABORT, "credit must be initially unused")
WHERE NEW.spent != 0;
END;