Skip to content

Commit

Permalink
oops, also update the sql and schema
Browse files Browse the repository at this point in the history
  • Loading branch information
wlmyng committed Oct 18, 2024
1 parent e98fd98 commit 68cefe7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ CREATE TABLE watermarks
timestamp_ms BIGINT NOT NULL,
-- Column used by the pruner to track its true progress. Data at and below this watermark can
-- be immediately pruned.
pruner_hi_inclusive BIGINT,
pruner_hi BIGINT,
PRIMARY KEY (entity)
);
2 changes: 1 addition & 1 deletion crates/sui-indexer/src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ diesel::table! {
tx_hi_inclusive -> Int8,
reader_lo -> Int8,
timestamp_ms -> Int8,
pruner_hi_inclusive -> Nullable<Int8>,
pruner_hi -> Nullable<Int8>,
}
}

Expand Down

0 comments on commit 68cefe7

Please sign in to comment.