From b7b17d87df7e70d6774e40b864227fc3ddce4686 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Tue, 28 Feb 2023 00:52:10 +0900 Subject: Add transaction type. --- verify/transaction_type.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 verify/transaction_type.sql (limited to 'verify') diff --git a/verify/transaction_type.sql b/verify/transaction_type.sql new file mode 100644 index 0000000..64de361 --- /dev/null +++ b/verify/transaction_type.sql @@ -0,0 +1,11 @@ +-- Verify kakeibo:transaction_type on pg + +BEGIN; + +DO $$ + BEGIN + ASSERT (select 1 from pg_type where typname = 'transaction_type'); + END +$$; + +ROLLBACK; -- cgit v1.2.3