diff options
Diffstat (limited to 'deploy')
-rw-r--r-- | deploy/delete_transaction.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/deploy/delete_transaction.sql b/deploy/delete_transaction.sql new file mode 100644 index 0000000..b4d6567 --- /dev/null +++ b/deploy/delete_transaction.sql @@ -0,0 +1,14 @@ +-- Deploy kakeibo:delete_transaction to pg +-- requires: transactions +-- requires: appschema + +BEGIN; + +CREATE OR REPLACE FUNCTION kakeibo.delete_transaction(p_id integer) + RETURNS VOID AS $$ +BEGIN + DELETE FROM kakeibo.transactions WHERE id = p_id; +END; +$$ LANGUAGE plpgsql SECURITY DEFINER; + +COMMIT; |