prorm API Reference
    Preparing search index...

    Interface DataTypeEnum

    A column restricted to a fixed set of string values. Engines without native enums emit a check constraint instead.

    interface DataTypeEnum {
        toSql?: () => string;
        key: "ENUM";
        values: string[];
    }

    Hierarchy (View Summary)

    Index
    toSql?: () => string
    key: "ENUM"
    values: string[]