SQLQueryHelperjs - v1.2.6
    Preparing search index...

    Interface SqliteSchemaChangeHistoryEntry

    interface SqliteSchemaChangeHistoryEntry {
        timestamp: string;
        table: string;
        operation:
            | "create-table"
            | "add-column"
            | "rebuild-table"
            | "drop-index"
            | "drop-trigger"
            | "drop-view"
            | "create-index"
            | "recreate-view"
            | "recreate-trigger";
        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"
        | "recreate-view"
        | "recreate-trigger"
    changeTicketId?: string
    sql?: string
    details?: string
    id: number