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/revert/load_new_guix_revision_job_logs.sql
Christopher Baines d96add30a0 Record the output from loading new revisions to the database
So that it can easily be shown through the web interface. There's two tables
being used. One which temporarily stores the output as it's output while the
job is running, and other which stores the whole log once the job has
finished.
2019-06-22 01:51:49 +02:00

8 lines
179 B
PL/PgSQL

-- Revert guix-data-service:load_new_guix_revision_job_logs from pg
BEGIN;
DROP TABLE load_new_guix_revision_job_log_parts;
DROP TABLE load_new_guix_revision_job_logs;
COMMIT;