Interface DbSchema

interface DbSchema {
    indexes: readonly {
        name: string;
        sql: string;
    }[];
    tables: readonly Table[];
}

Properties

Properties

indexes: readonly {
    name: string;
    sql: string;
}[]
tables: readonly Table[]