prorm API Reference
    Preparing search index...

    Interface DataTypeDecimal

    Exact fixed-point numeric with the given precision and scale. The type to use for money.

    interface DataTypeDecimal {
        toSql?: () => string;
        key: "DECIMAL";
        precision: number;
        scale: number;
        unsigned?: boolean;
    }

    Hierarchy (View Summary)

    Index
    toSql?: () => string
    key: "DECIMAL"
    precision: number
    scale: number
    unsigned?: boolean