aboutsummaryrefslogtreecommitdiff
path: root/verify/kakeibo.transaction_type.sql
blob: 9db545a20d018b7db25b9e39ad192b0c32d1156d (plain)
1
2
3
4
5
6
7
8
9
10
11
-- Verify life-archive:kakeibo.transaction_type on pg

BEGIN;

DO $$
  BEGIN
    ASSERT (select 1 from pg_type where typname = 'transaction_type');
  END
$$;

ROLLBACK;