Interface IndexMetadata

interface IndexMetadata {
    name: string;
    columns: string[];
    unique: boolean;
    sparse: boolean;
}

Properties

name: string
columns: string[]
unique: boolean
sparse: boolean