Skip to content

Commit

Permalink
Fix typo in state DB SQL migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jbearer committed Jan 16, 2024
1 parent 0c35067 commit a383aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/migrations/state/0001.sql
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ CREATE TABLE state.virtual_batch
batch_num BIGINT PRIMARY KEY REFERENCES state.batch (batch_num) ON DELETE CASCADE,
tx_hash VARCHAR,
coinbase VARCHAR,
block_num BIGINT NOT NULL REFERENCES state.block (block_num) ON DELETE CASCADE
block_num BIGINT NOT NULL REFERENCES state.block (block_num) ON DELETE CASCADE,
seen_at BIGINT NOT NULL REFERENCES state.block (block_num) ON DELETE CASCADE
);

Expand Down

0 comments on commit a383aeb

Please sign in to comment.