suins_indexer/
schema.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

// @generated automatically by Diesel CLI.

diesel::table! {
    domains (name) {
        name -> Varchar,
        parent -> Varchar,
        expiration_timestamp_ms -> Int8,
        nft_id -> Varchar,
        field_id -> Varchar,
        target_address -> Nullable<Varchar>,
        data -> Json,
        last_checkpoint_updated -> Int8,
        subdomain_wrapper_id -> Nullable<Varchar>,
    }
}