diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2023-03-05 23:31:51 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2023-03-05 23:31:51 +0900 |
commit | 3f999d647e972e4f7fd807832bc4544f7aaecede (patch) | |
tree | 07b041896c4654bf9c71c0cfe839a3f647b26b4f /verify | |
parent | c9248050393c04a0af8d359f92607c0e6888371a (diff) |
Add article_id column to transactions table.
Diffstat (limited to 'verify')
-rw-r--r-- | verify/transactions_article_id.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/verify/transactions_article_id.sql b/verify/transactions_article_id.sql new file mode 100644 index 0000000..2e3d6f4 --- /dev/null +++ b/verify/transactions_article_id.sql @@ -0,0 +1,9 @@ +-- Verify kakeibo:transactions_article_id on pg + +BEGIN; + +SELECT article_id + FROM kakeibo.transactions + WHERE FALSE; + +ROLLBACK; |