import { MigrationInterface, QueryRunner } from 'typeorm'; export declare class CreateFunctionGetJobBatch1727347121793 implements MigrationInterface { /** * Replaces the get_next_job function with get_job_batch which works the same but * receives an optional limit param and returns an array of job ids instead of a single job id. * @param queryRunner */ up(queryRunner: QueryRunner): Promise; /** * Deletes the get_job_batch function and restores the get_next_job function. * @param queryRunner */ down(queryRunner: QueryRunner): Promise; }