aboutsummaryrefslogtreecommitdiff
path: root/verify
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2023-03-05 12:49:00 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2023-03-05 12:49:00 +0900
commit4b552c58f5988d1af18ef34ccec5979081c3bc14 (patch)
treefb9b4bbbb5924491d31c471e47ed0607e21901fa /verify
parent332309099a60fa5feefa88c880f92ba308881173 (diff)
Add types table for manage type column of transactions.
Diffstat (limited to 'verify')
-rw-r--r--verify/types.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/verify/types.sql b/verify/types.sql
new file mode 100644
index 0000000..0e91d6f
--- /dev/null
+++ b/verify/types.sql
@@ -0,0 +1,10 @@
+-- Verify kakeibo:types on pg
+
+BEGIN;
+
+SELECT code,
+ name
+ FROM kakeibo.types
+ WHERE FALSE;
+
+ROLLBACK;