sui_pg_db/
schema.rs

1// Copyright (c) Mysten Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3// @generated automatically by Diesel CLI.
4
5diesel::table! {
6    watermarks (pipeline) {
7        pipeline -> Text,
8        epoch_hi_inclusive -> Int8,
9        checkpoint_hi_inclusive -> Int8,
10        tx_hi -> Int8,
11        timestamp_ms_hi_inclusive -> Int8,
12        reader_lo -> Int8,
13        pruner_timestamp -> Timestamp,
14        pruner_hi -> Int8,
15    }
16}