-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reporting offchain data gap detection #102
Conversation
ALTER TABLE data_node.offchain_data DROP COLUMN IF EXISTS batch_num; | ||
|
||
-- +migrate Up | ||
ALTER TABLE data_node.offchain_data | ||
ADD COLUMN IF NOT EXISTS batch_num BIGINT NOT NULL DEFAULT 0; | ||
|
||
-- Ensure batch_num is indexed for optimal performance |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Decided to modify an existing migration since it was added in the previous PR and was not deployed anywhere yet. It should be ok in this particular case.
# Conflicts: # services/status/status_test.go # synchronizer/batches.go
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM aside from the comments
Quality Gate passedIssues Measures |
No description provided.