Member Junction
    Preparing search index...

    Options for ALTER TABLE column modification.

    interface AlterColumnOptions {
        columnName: string;
        newNullable: boolean;
        newType: string;
    }
    Index

    Properties

    columnName: string

    Column name (unquoted).

    newNullable: boolean

    New nullability.

    newType: string

    New SQL type string.