interface ColumnDescription {
    allowNull: boolean;
    autoIncrement: boolean;
    comment: null | string;
    defaultValue: string;
    primaryKey: boolean;
    type: string;
}

Properties

allowNull: boolean
autoIncrement: boolean
comment: null | string
defaultValue: string
primaryKey: boolean
type: string