From 1c6642ef3ea7c6e4f4e1a90b07e1b60be6a7429b Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sun, 5 Mar 2023 12:57:14 +0900 Subject: Rename column of transactions from type to type_code. --- verify/transactions_type_code.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 verify/transactions_type_code.sql (limited to 'verify') diff --git a/verify/transactions_type_code.sql b/verify/transactions_type_code.sql new file mode 100644 index 0000000..d374d71 --- /dev/null +++ b/verify/transactions_type_code.sql @@ -0,0 +1,14 @@ +-- Verify kakeibo:transactions_type_code on pg + +BEGIN; + +SELECT id, + type_code, + date, + note, + created_at, + updated_at + FROM kakeibo.transactions + WHERE FALSE; + +ROLLBACK; -- cgit v1.2.3