SQLQueryHelperjs - v1.2.6
    Preparing search index...

    Interface SqliteTableSyncPreview

    interface SqliteTableSyncPreview {
        table: string;
        exists: boolean;
        action: "create" | "alter" | "rebuild" | "destructive-blocked" | "noop";
        addColumns: string[];
        droppedColumns: string[];
        columnRenames: { from: string; to: string }[];
        caseOnlyRenames: { from: string; to: string }[];
        rebuildReasons: string[];
        blockingDependencies: SqliteDestructiveDependency[];
        indexesToCreate: string[];
        indexesToDrop: string[];
        indexesToRecreate: string[];
        requiresDestructiveApproval: boolean;
        requiresChangeTicket: boolean;
        blockedInProduction: boolean;
    }
    Index

    Properties

    table: string
    exists: boolean
    action: "create" | "alter" | "rebuild" | "destructive-blocked" | "noop"
    addColumns: string[]
    droppedColumns: string[]
    columnRenames: { from: string; to: string }[]
    caseOnlyRenames: { from: string; to: string }[]
    rebuildReasons: string[]
    blockingDependencies: SqliteDestructiveDependency[]
    indexesToCreate: string[]
    indexesToDrop: string[]
    indexesToRecreate: string[]
    requiresDestructiveApproval: boolean
    requiresChangeTicket: boolean
    blockedInProduction: boolean