diff options
| author | Masaya Tojo <masaya@tojo.tokyo> | 2023-02-28 00:52:10 +0900 |
|---|---|---|
| committer | Masaya Tojo <masaya@tojo.tokyo> | 2023-03-01 02:28:55 +0900 |
| commit | b7b17d87df7e70d6774e40b864227fc3ddce4686 (patch) | |
| tree | 43edf499efaf772727987d209302b9120c7a994d /verify | |
| parent | acf7f9ecff4ddad620b85b07b4b4e6952946b385 (diff) | |
Add transaction type.
Diffstat (limited to 'verify')
| -rw-r--r-- | verify/transaction_type.sql | 11 |
1 files changed, 11 insertions, 0 deletions
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; |
