diff options
Diffstat (limited to 'deploy/transaction_type.sql')
-rw-r--r-- | deploy/transaction_type.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/deploy/transaction_type.sql b/deploy/transaction_type.sql new file mode 100644 index 0000000..b29421f --- /dev/null +++ b/deploy/transaction_type.sql @@ -0,0 +1,11 @@ +-- Deploy kakeibo:transaction_type to pg +-- requires: appschema + +BEGIN; + +CREATE TYPE kakeibo.transaction_type AS ENUM( + 'income', + 'outgo' +); + +COMMIT; |