Files
letro-authentication-service/crates/storage-pg/migrations/20241122130349_queue_job_scheduled.sql
Quentin Gliech a01201f954 Allow scheduling jobs in the future
Also retries jobs with an exponential backoff.
2024-12-06 16:24:26 +01:00

12 lines
353 B
SQL

-- Copyright 2024 New Vector Ltd.
--
-- SPDX-License-Identifier: AGPL-3.0-only
-- Please see LICENSE in the repository root for full details.
-- Add a new status for scheduled jobs
ALTER TYPE "queue_job_status" ADD VALUE 'scheduled';
ALTER TABLE "queue_jobs"
-- When the job is scheduled to run
ADD COLUMN "scheduled_at" TIMESTAMP WITH TIME ZONE;