prorm API Reference
    Preparing search index...

    Interface DatabaseColumnInfo

    Column information from database (via describeTable)

    interface DatabaseColumnInfo {
        name: string;
        type: string;
        allowNull: boolean;
        defaultValue: any;
        primaryKey: boolean;
        autoIncrement: boolean;
    }
    Index
    name: string
    type: string
    allowNull: boolean
    defaultValue: any
    primaryKey: boolean
    autoIncrement: boolean