Libraries
    Preparing search index...

    Interface AddColumnDiff

    A column to add in a migration.

    interface AddColumnDiff {
        defaultValue?: any;
        name: string;
        nullable: boolean;
        onDelete?: string;
        onUpdate?: string;
        references?: { column: string; table: string };
        type: string;
    }
    Index

    Properties

    defaultValue?: any
    name: string
    nullable: boolean
    onDelete?: string
    onUpdate?: string
    references?: { column: string; table: string }
    type: string