UNPKG

@riao/dbal

Version:
10 lines (9 loc) 264 B
import { ColumnOptions } from '../column'; export interface SchemaTable { name: string; type: 'table' | 'view'; } export interface SchemaTableWithColumns extends SchemaTable { columns: Record<string, ColumnOptions>; primaryKey?: string; }