Skip to content

Commit

Permalink
fix eth_block_extra migration
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Jun 17, 2024
1 parent 04f365f commit 098ee67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion db/schema/pgsql/20240613235955_fix-slots-data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- +goose StatementBegin

UPDATE slots
SET eth_block_extra = '0x', eth_block_extra_text = ''
SET eth_block_extra = '', eth_block_extra_text = ''
WHERE state_root IS NOT NULL AND eth_block_extra IS NULL;

-- +goose StatementEnd
Expand Down
2 changes: 1 addition & 1 deletion db/schema/sqlite/20240613235955_fix-slots-data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- +goose StatementBegin

UPDATE slots
SET eth_block_extra = '0x', eth_block_extra_text = ''
SET eth_block_extra = '', eth_block_extra_text = ''
WHERE state_root IS NOT NULL AND eth_block_extra IS NULL;

-- +goose StatementEnd
Expand Down

0 comments on commit 098ee67

Please sign in to comment.