From d5ebc30b1092a89e364720b2d302b1978d62632c Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sun, 12 Mar 2023 18:24:31 +0900 Subject: Add function to delete transaction. --- deploy/delete_transaction.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 deploy/delete_transaction.sql (limited to 'deploy') diff --git a/deploy/delete_transaction.sql b/deploy/delete_transaction.sql new file mode 100644 index 0000000..d3c23de --- /dev/null +++ b/deploy/delete_transaction.sql @@ -0,0 +1,15 @@ +-- Deploy kakeibo:delete_transaction to pg +-- requires: schema +-- requires: transactions + +BEGIN; + +CREATE OR REPLACE FUNCTION kakeibo.delete_transaction( + p_transaction_id INTEGER +) RETURNS VOID AS $$ + BEGIN + DELETE FROM kakeibo.transactions WHERE id = p_transaction_id; + END; +$$ LANGUAGE plpgsql SECURITY DEFINER; + +COMMIT; -- cgit v1.2.3