2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/data-service.git synced 2023-12-14 03:23:03 +01:00
data-service/sqitch/verify/load_new_guix_revision_job_events.sql
Christopher Baines 5d06a28577 Add more detailed new revision job handling
Create a new events table for the new guix revision jobs, and update this when
processing a job starts, as well as finished with success or failure.

Additionally, remove the dependnency on open-inferior/container, as this
functionality isn't merged in to Guix master yet.
2019-06-02 22:00:29 +01:00

9 lines
180 B
PL/PgSQL

-- Verify guix-data-service:load_new_guix_revision_job_events on pg
BEGIN;
SELECT id, job_id, event, occurred_at
FROM load_new_guix_revision_job_events WHERE FALSE;
ROLLBACK;