prorm API Reference
    Preparing search index...

    Interface DataTypeBigInt

    A 64-bit integer. Values beyond Number.MAX_SAFE_INTEGER are returned as strings by most drivers, so treat the result as a string when the range matters.

    interface DataTypeBigInt {
        toSql?: () => string;
        key: "BIGINT";
        length?: number;
        unsigned?: boolean;
    }

    Hierarchy (View Summary)

    Index
    toSql?: () => string
    key: "BIGINT"
    length?: number
    unsigned?: boolean