From 0854294b374660178c3d62a75bdd9a554359dcb4 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Tue, 28 Feb 2023 21:40:20 +0900 Subject: Add items table for tracking individual products in transaction. --- verify/items.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 verify/items.sql (limited to 'verify/items.sql') diff --git a/verify/items.sql b/verify/items.sql new file mode 100644 index 0000000..9a561cf --- /dev/null +++ b/verify/items.sql @@ -0,0 +1,16 @@ +-- Verify kakeibo:items on pg + +BEGIN; + +SELECT id, + transaction_id, + category, + subcategory, + amount, + note, + created_at, + updated_at + FROM kakeibo.items + WHERE FALSE; + +ROLLBACK; -- cgit v1.2.3