Libraries
    Preparing search index...

    Interface DatabaseColumnInfo

    Column information read from the database.

    interface DatabaseColumnInfo {
        defaultValue: string | null;
        maxLength: number | null;
        name: string;
        nullable: boolean;
        numericPrecision: number | null;
        type: string;
    }
    Index

    Properties

    defaultValue: string | null
    maxLength: number | null
    name: string
    nullable: boolean
    numericPrecision: number | null
    type: string