Skip to content

Commit

Permalink
fix: drop transaction_blacklists too
Browse files Browse the repository at this point in the history
transaction_blacklists depends on transactions, it needs to be dropped
too.
  • Loading branch information
alextes committed May 22, 2024
1 parent 1cf501d commit c1a61d8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions migrations/0024_drop_transaction_blacklists.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
CREATE TABLE transaction_blacklists (
transaction_hash varchar(66) REFERENCES transactions (transaction_hash),
blacklist_id blacklist_id_enum NOT NULL
);
1 change: 1 addition & 0 deletions migrations/0024_drop_transaction_blacklists.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP TABLE transaction_blacklists;
File renamed without changes.
File renamed without changes.

0 comments on commit c1a61d8

Please sign in to comment.