diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2023-02-28 22:20:25 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2023-03-02 09:22:36 +0900 |
commit | 58c00ca515142d27e3fb324539dedd75b8740bcf (patch) | |
tree | 1811551fce71b6f37fb097217b3b6bd05b990aad /deploy | |
parent | 0854294b374660178c3d62a75bdd9a554359dcb4 (diff) |
Add function to insert item.
Diffstat (limited to 'deploy')
-rw-r--r-- | deploy/insert_item.sql | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/deploy/insert_item.sql b/deploy/insert_item.sql new file mode 100644 index 0000000..a0a5b5c --- /dev/null +++ b/deploy/insert_item.sql @@ -0,0 +1,26 @@ +-- Deploy kakeibo:insert_item to pg +-- requires: appschema +-- requires: items + +BEGIN; + +CREATE OR REPLACE FUNCTION kakeibo.insert_transaction( + p_transaction_id INTEER, + p_category TEXT, + p_subcategory TEXT, + p_amount INTEGER, + p_note TEXT +) RETURNS INTEGER AS $$ +DECLARE + inserted_id INTEGER; +BEGIN + INSERT INTO kakeibo.items ( + transaction_id, category, subcategory, amount, note + ) VALUES ( + p_transaction_id, p_category, p_subcategory, p_amount, p_note + ) RETURNING id INTO inserted_id; + RETURN inserted_id; +END; +$$ LANGUAGE plpgsql SECURITY DEFINER; + +COMMIT; |