prorm API Reference
    Preparing search index...

    Interface DescribedColumn

    One column as queryInterface.describeTable() reports it.

    interface DescribedColumn {
        type?: string;
        allowNull?: boolean;
        defaultValue?: unknown;
        primaryKey?: boolean;
        autoIncrement?: boolean;
        unique?: boolean;
        comment?: string;
    }
    Index
    type?: string
    allowNull?: boolean
    defaultValue?: unknown
    primaryKey?: boolean
    autoIncrement?: boolean
    unique?: boolean
    comment?: string