Interface ColumnMeta

interface ColumnMeta {
    description: null | string;
    name: string;
    nullable: boolean;
    precision: number;
    primary_key: boolean;
    scale: number;
    title: null | string;
    type: ColumnType;
    unique: boolean;
    width: number;
}

Properties

description: null | string
name: string
nullable: boolean
precision: number
primary_key: boolean
scale: number
title: null | string
unique: boolean
width: number