Skip to content

Commit

Permalink
Add pool.whitelisted table (#2704)
Browse files Browse the repository at this point in the history
* add pool.whitelisted table

* Add empty line after DROP TABLE

Co-authored-by: Toni Ramírez <[email protected]>

---------

Co-authored-by: Toni Ramírez <[email protected]>
  • Loading branch information
agnusmor and ToniRamirezM authored Oct 23, 2023
1 parent c9218a3 commit 4309add
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions db/migrations/pool/0011.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
-- +migrate Up
CREATE TABLE pool.whitelisted (
addr VARCHAR PRIMARY KEY
);

-- +migrate Down
DROP TABLE pool.whitelisted;

0 comments on commit 4309add

Please sign in to comment.