aboutsummaryrefslogtreecommitdiff
path: root/deploy/transaction_type.sql
blob: b29421fe91091cba4b01d63a5e6293da18f834c3 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
-- Deploy kakeibo:transaction_type to pg
-- requires: appschema

BEGIN;

CREATE TYPE kakeibo.transaction_type AS ENUM(
  'income',
  'outgo'
);

COMMIT;