SQLQueryHelperjs - v1.2.6
    Preparing search index...

    Interface MySqlSchemaChangeHistoryEntry

    interface MySqlSchemaChangeHistoryEntry {
        timestamp: string;
        table: string;
        operation:
            | "create-table"
            | "add-column"
            | "rebuild-table"
            | "drop-index"
            | "drop-trigger"
            | "drop-view"
            | "create-index"
            | "destructive-blocked"
            | "create-routine"
            | "drop-routine"
            | "create-trigger"
            | "create-foreign-key"
            | "drop-foreign-key"
            | "create-view";
        changeTicketId?: string;
        sql?: string;
        details?: string;
        id: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    timestamp: string
    table: string
    operation:
        | "create-table"
        | "add-column"
        | "rebuild-table"
        | "drop-index"
        | "drop-trigger"
        | "drop-view"
        | "create-index"
        | "destructive-blocked"
        | "create-routine"
        | "drop-routine"
        | "create-trigger"
        | "create-foreign-key"
        | "drop-foreign-key"
        | "create-view"
    changeTicketId?: string
    sql?: string
    details?: string
    id: number