From 9761a87255c1eddf23029a0492965aed713bf5de Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sat, 8 Apr 2023 14:41:24 +0900 Subject: Add `transaction_type` enum type. --- deploy/kakeibo.transaction_type.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 deploy/kakeibo.transaction_type.sql (limited to 'deploy') diff --git a/deploy/kakeibo.transaction_type.sql b/deploy/kakeibo.transaction_type.sql new file mode 100644 index 0000000..1d6cddf --- /dev/null +++ b/deploy/kakeibo.transaction_type.sql @@ -0,0 +1,8 @@ +-- Deploy life-archive:kakeibo.transaction_type to pg +-- requires: kakeibo + +BEGIN; + +CREATE TYPE kakeibo.transaction_type AS ENUM ('outgo', 'income'); + +COMMIT; -- cgit v1.2.3