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 /revert | |
parent | c9248050393c04a0af8d359f92607c0e6888371a (diff) |
Add article_id column to transactions table.
Diffstat (limited to 'revert')
-rw-r--r-- | revert/transactions_article_id.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/revert/transactions_article_id.sql b/revert/transactions_article_id.sql new file mode 100644 index 0000000..ed98ba5 --- /dev/null +++ b/revert/transactions_article_id.sql @@ -0,0 +1,8 @@ +-- Revert kakeibo:transactions_article_id from pg + +BEGIN; + +ALTER TABLE kakeibo.transactions + DROP COLUMN article_id; + +COMMIT; |