suins_indexer/
schema.rs

1// Copyright (c) Mysten Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3
4// @generated automatically by Diesel CLI.
5
6diesel::table! {
7    domains (name) {
8        name -> Varchar,
9        parent -> Varchar,
10        expiration_timestamp_ms -> Int8,
11        nft_id -> Varchar,
12        field_id -> Varchar,
13        target_address -> Nullable<Varchar>,
14        data -> Json,
15        last_checkpoint_updated -> Int8,
16        subdomain_wrapper_id -> Nullable<Varchar>,
17    }
18}