From f011f99514c304521e14eb00b2c6e6d4b2c3dd11 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Mon, 13 Mar 2023 00:23:26 +0900 Subject: Add table to manage transaction type codes. --- verify/transaction_types.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 verify/transaction_types.sql (limited to 'verify') diff --git a/verify/transaction_types.sql b/verify/transaction_types.sql new file mode 100644 index 0000000..49aa2f6 --- /dev/null +++ b/verify/transaction_types.sql @@ -0,0 +1,10 @@ +-- Verify kakeibo:transaction_types on pg + +BEGIN; + +SELECT code, + name + FROM kakeibo.transaction_types + WHERE FALSE; + +ROLLBACK; -- cgit v1.2.3