drupflare/worker - v1.0.0
    Preparing search index...

    Interface SqlMigratorOptions

    Where the manifest and chunks come from. Injected so the gate tests can replay off disk.

    interface SqlMigratorOptions {
        loadChunk: (file: string, index: number) => Promise<MigrationChunk>;
        loadManifest: () => Promise<MigrationManifest>;
        now?: () => number;
        sql: SqlLike;
        storage: StorageLike;
    }

    Hierarchy (View Summary)

    Index
    loadChunk: (file: string, index: number) => Promise<MigrationChunk>
    loadManifest: () => Promise<MigrationManifest>
    now?: () => number
    sql: SqlLike
    storage: StorageLike