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

BEGIN;

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

ROLLBACK;