UNPKG

@sqb/connect

Version:

Multi-dialect database connection framework written with TypeScript

19 lines (18 loc) 314 B
export interface IndexMetadata { /** * Columns of the index */ columns: string[]; /** * Name of the index */ name?: string; /** * Specifies if index is unique */ unique?: boolean; /** * Specifies if index is primary */ primary?: boolean; }