aboutsummaryrefslogtreecommitdiff
path: root/verify
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2023-03-13 00:23:26 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2023-03-14 09:09:58 +0900
commitf011f99514c304521e14eb00b2c6e6d4b2c3dd11 (patch)
treec62fecf1393cd9b8525e2cbffd70e5fca0f0834d /verify
parent16b03189283eeb212499681d9de5bc054346b184 (diff)
Add table to manage transaction type codes.
Diffstat (limited to 'verify')
-rw-r--r--verify/transaction_types.sql10
1 files changed, 10 insertions, 0 deletions
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;