Skip to content

Commit

Permalink
fix(relayer): fix migrations (#300)
Browse files Browse the repository at this point in the history
* block height should not be unique

* rm bin
  • Loading branch information
cyberhorsey authored Nov 22, 2022
1 parent 6675626 commit 151415e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- +goose StatementBegin
CREATE TABLE IF NOT EXISTS processed_blocks (
id int NOT NULL PRIMARY KEY AUTO_INCREMENT,
block_height int NOT NULL UNIQUE,
block_height int NOT NULL,
hash VARCHAR(255) NOT NULL UNIQUE,
chain_id int NOT NULL,
event_name VARCHAR(255) NOT NULL,
Expand Down

0 comments on commit 151415e

Please sign in to comment.