diff --git a/crates/sui-indexer/migrations/pg/2024-09-12-213234_watermarks/up.sql b/crates/sui-indexer/migrations/pg/2024-09-12-213234_watermarks/up.sql index 2187cadc26f32..0822ce2c2fa6c 100644 --- a/crates/sui-indexer/migrations/pg/2024-09-12-213234_watermarks/up.sql +++ b/crates/sui-indexer/migrations/pg/2024-09-12-213234_watermarks/up.sql @@ -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) ); diff --git a/crates/sui-indexer/src/schema.rs b/crates/sui-indexer/src/schema.rs index b149b0f6faa0d..f46f144dc672a 100644 --- a/crates/sui-indexer/src/schema.rs +++ b/crates/sui-indexer/src/schema.rs @@ -378,7 +378,7 @@ diesel::table! { tx_hi_inclusive -> Int8, reader_lo -> Int8, timestamp_ms -> Int8, - pruner_hi_inclusive -> Nullable, + pruner_hi -> Nullable, } }