Interface ColumnInfo

Column information.

interface ColumnInfo {
    name: string;
    type: string;
    nullable?: boolean;
    defaultValue?: string;
}

Properties

name: string
type: string
nullable?: boolean
defaultValue?: string