prorm API Reference
    Preparing search index...

    Interface TableChange

    Table change details containing all changes for a single table

    interface TableChange {
        tableName: string;
        schemaName?: string;
        columnChanges: ColumnChange[];
        indexChanges: IndexChange[];
        constraintChanges: ConstraintChange[];
        foreignKeyChanges: ForeignKeyChange[];
        isNew: boolean;
        isDeleted: boolean;
    }
    Index
    tableName: string
    schemaName?: string
    columnChanges: ColumnChange[]
    indexChanges: IndexChange[]
    constraintChanges: ConstraintChange[]
    foreignKeyChanges: ForeignKeyChange[]
    isNew: boolean

    Whether the table is new (created)

    isDeleted: boolean

    Whether the table was deleted