Member Junction
    Preparing search index...

    The schema-builder field-type family + the concrete per-dialect SQL types we infer.

    interface InferredColumnType {
        MaxLength: number;
        PostgresType: string;
        SchemaFieldType: "string" | "number" | "boolean" | "datetime";
        SqlServerType: string;
    }
    Index

    Properties

    MaxLength: number

    Bound for string types (null for non-string or when unbounded → MAX/TEXT).

    PostgresType: string

    Concrete PostgreSQL column type, e.g. VARCHAR(255), BIGINT, TIMESTAMPTZ.

    SchemaFieldType: "string" | "number" | "boolean" | "datetime"

    Schema-builder SchemaFieldType family ('string' | 'number' | 'boolean' | 'datetime').

    SqlServerType: string

    Concrete SQL Server column type, e.g. NVARCHAR(255), BIGINT, DATETIMEOFFSET.