From cd23d52c0c5c3d3264c5a8706c2c6fe2b1649640 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sun, 12 Mar 2023 15:46:32 +0900 Subject: Add table for tracking items. --- deploy/items.sql | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 deploy/items.sql (limited to 'deploy') diff --git a/deploy/items.sql b/deploy/items.sql new file mode 100644 index 0000000..0a43f8b --- /dev/null +++ b/deploy/items.sql @@ -0,0 +1,18 @@ +-- Deploy kakeibo:items to pg +-- requires: schema +-- requires: transactions + +BEGIN; + +CREATE TABLE kakeibo.items ( + id SERIAL PRIMARY KEY, + transaction_id INTEGER NOT NULL REFERENCES kakeibo.transactions(id) ON DELETE RESTRICT ON UPDATE RESTRICT, + category TEXT NOT NULL, + subcategory TEXT CHECK (note <> ''), + amount INTEGER NOT NULL CHECK (amount > 0), + note TEXT CHECK (note <> '') , + created_at TIMESTAMP NOT NULL DEFAULT NOW(), + updated_at TIMESTAMP NOT NULL DEFAULT NOW() +); + +COMMIT; -- cgit v1.2.3