Skip to content

Commit

Permalink
Fix add block columns migration (0.122) (#10213)
Browse files Browse the repository at this point in the history
- Remove data backfill in the migration and change migration version

Signed-off-by: Xin Li <[email protected]>
  • Loading branch information
xin-hedera authored Jan 23, 2025
1 parent 366db27 commit 0a8b418
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 149 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,3 @@ alter table if exists record_file
add column if not exists software_version_patch int null,
add column if not exists round_start bigint null,
add column if not exists round_end bigint null;

update record_file
set software_version_major = hapi_version_major,
software_version_minor = hapi_version_minor,
software_version_patch = hapi_version_patch;
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,3 @@ alter table if exists record_file
add column if not exists software_version_patch int null,
add column if not exists round_start bigint null,
add column if not exists round_end bigint null;

update record_file
set software_version_major = hapi_version_major,
software_version_minor = hapi_version_minor,
software_version_patch = hapi_version_patch;

This file was deleted.

0 comments on commit 0a8b418

Please sign in to comment.