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;