Member Junction
    Preparing search index...

    Represents a mapped data type from one database platform to another.

    interface MappedType {
        defaultLength?: number;
        supportsLength: boolean;
        supportsPrecisionScale: boolean;
        typeName: string;
    }
    Index

    Properties

    defaultLength?: number

    Default length if applicable

    supportsLength: boolean

    Whether the type supports a length parameter (e.g., VARCHAR(255))

    supportsPrecisionScale: boolean

    Whether the type supports precision/scale (e.g., NUMERIC(10,2))

    typeName: string

    The target platform data type name (e.g., "VARCHAR", "UUID", "BOOLEAN")