From 69ac90518f003895b8ffb6618b84b91ff4256308 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sat, 4 Mar 2023 20:21:24 +0900 Subject: Drop transaction_type. --- revert/transaction_type.sql | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'revert/transaction_type.sql') diff --git a/revert/transaction_type.sql b/revert/transaction_type.sql index 00fd491..b29421f 100644 --- a/revert/transaction_type.sql +++ b/revert/transaction_type.sql @@ -1,7 +1,11 @@ --- Revert kakeibo:transaction_type from pg +-- Deploy kakeibo:transaction_type to pg +-- requires: appschema BEGIN; -DROP TYPE kakeibo.transaction_type; +CREATE TYPE kakeibo.transaction_type AS ENUM( + 'income', + 'outgo' +); COMMIT; -- cgit v1.2.3