diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2023-03-29 00:44:54 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2023-03-29 00:44:54 +0900 |
commit | 7da8e4758e637014c57581a19c3399278c2d146b (patch) | |
tree | 931330772c97677ca1eb6c450febd508bfce8ac1 /revert | |
parent | 70304b1903cc5b1accd9caea229e59901384203a (diff) |
Remove trnasaction_types from history.
Diffstat (limited to 'revert')
-rw-r--r-- | revert/kakeibo.transaction_types.sql | 7 | ||||
-rw-r--r-- | revert/kakeibo.transactions.sql | 2 | ||||
-rw-r--r-- | revert/kakeibo.transactions@v1.0.0-alpha.2.sql | 8 |
3 files changed, 1 insertions, 16 deletions
diff --git a/revert/kakeibo.transaction_types.sql b/revert/kakeibo.transaction_types.sql deleted file mode 100644 index 48df263..0000000 --- a/revert/kakeibo.transaction_types.sql +++ /dev/null @@ -1,7 +0,0 @@ --- Revert kakeibo:transaction_types from pg - -BEGIN; - -DROP TABLE kakeibo.transaction_types; - -COMMIT; diff --git a/revert/kakeibo.transactions.sql b/revert/kakeibo.transactions.sql index c424cc1..d30390a 100644 --- a/revert/kakeibo.transactions.sql +++ b/revert/kakeibo.transactions.sql @@ -3,6 +3,6 @@ BEGIN; ALTER TABLE kakeibo.transactions - DROP CONSTRAINT transactions_type_code_fkey; + DROP COLUMN article_id; COMMIT; diff --git a/revert/kakeibo.transactions@v1.0.0-alpha.2.sql b/revert/kakeibo.transactions@v1.0.0-alpha.2.sql deleted file mode 100644 index d30390a..0000000 --- a/revert/kakeibo.transactions@v1.0.0-alpha.2.sql +++ /dev/null @@ -1,8 +0,0 @@ --- Revert kakeibo:transactions from pg - -BEGIN; - -ALTER TABLE kakeibo.transactions - DROP COLUMN article_id; - -COMMIT; |