Member Junction
    Preparing search index...

    Options for generating a column definition in DDL.

    interface ColumnDDLOptions {
        defaultValue?: string;
        name: string;
        nullable: boolean;
        sqlType: string;
    }
    Index

    Properties

    defaultValue?: string

    Optional default value expression (e.g., "'Active'", "GETUTCDATE()").

    name: string

    Column name (unquoted — the dialect will quote it).

    nullable: boolean

    Whether the column allows NULL values.

    sqlType: string

    Full SQL type string (e.g., "NVARCHAR(255)", "INTEGER", "TIMESTAMPTZ").