diff options
| author | Masaya Tojo <masaya@tojo.tokyo> | 2023-03-12 01:57:45 +0900 |
|---|---|---|
| committer | Masaya Tojo <masaya@tojo.tokyo> | 2023-03-12 23:38:12 +0900 |
| commit | 55618dcd6a40c0b85612a20994114a18987ff43d (patch) | |
| tree | 60cd724f49d2b1536cd54ed28ca450b0347928f8 /verify | |
| parent | 754001bf63c6ad0b18329f601360d470870704b8 (diff) | |
Add table for tracking transactions.
Diffstat (limited to 'verify')
| -rw-r--r-- | verify/transactions.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/verify/transactions.sql b/verify/transactions.sql new file mode 100644 index 0000000..0cc1b2d --- /dev/null +++ b/verify/transactions.sql @@ -0,0 +1,14 @@ +-- Verify kakeibo:transactions on pg + +BEGIN; + +SELECT id, + type_code, + date, + note, + created_at, + updated_at + FROM kakeibo.transactions + WHERE FALSE; + +ROLLBACK; |
