Interface TableSchema

Table schema information.

interface TableSchema {
    name: string;
    columns: ColumnInfo[];
    primaryKeys?: string[];
    indexes?: IndexInfo[];
}

Properties

name: string
columns: ColumnInfo[]
primaryKeys?: string[]
indexes?: IndexInfo[]