From 131c856bdd5c48bbd8358fc8c1840fce4fcf2178 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sun, 5 Mar 2023 14:29:29 +0900 Subject: Rename column of transactions from type to type_code. --- deploy/insert_transaction.sql | 3 +-- deploy/insert_transaction@v1.0.0-dev3.sql | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 deploy/insert_transaction@v1.0.0-dev3.sql (limited to 'deploy') diff --git a/deploy/insert_transaction.sql b/deploy/insert_transaction.sql index 42e825d..6c39e9e 100644 --- a/deploy/insert_transaction.sql +++ b/deploy/insert_transaction.sql @@ -4,7 +4,6 @@ BEGIN; -DROP FUNCTION kakeibo.insert_transaction(kakeibo.transaction_type, DATE, TEXT); CREATE OR REPLACE FUNCTION kakeibo.insert_transaction( p_type INTEGER, p_date DATE, @@ -14,7 +13,7 @@ DECLARE inserted_id INTEGER; BEGIN INSERT INTO kakeibo.transactions ( - type, date, note + type_code, date, note ) VALUES ( p_type, p_date, p_note ) RETURNING id INTO inserted_id; diff --git a/deploy/insert_transaction@v1.0.0-dev3.sql b/deploy/insert_transaction@v1.0.0-dev3.sql new file mode 100644 index 0000000..42e825d --- /dev/null +++ b/deploy/insert_transaction@v1.0.0-dev3.sql @@ -0,0 +1,25 @@ +-- Deploy kakeibo:insert_transaction to pg +-- requires: appschema +-- requires: transactions + +BEGIN; + +DROP FUNCTION kakeibo.insert_transaction(kakeibo.transaction_type, DATE, TEXT); +CREATE OR REPLACE FUNCTION kakeibo.insert_transaction( + p_type INTEGER, + p_date DATE, + p_note TEXT +) RETURNS INTEGER AS $$ +DECLARE + inserted_id INTEGER; +BEGIN + INSERT INTO kakeibo.transactions ( + type, date, note + ) VALUES ( + p_type, p_date, p_note + ) RETURNING id INTO inserted_id; + RETURN inserted_id; +END; +$$ LANGUAGE plpgsql SECURITY DEFINER; + +COMMIT; -- cgit v1.2.3