From 3aba1813f1457686389c3176305c85a261d98b6b Mon Sep 17 00:00:00 2001 From: Sonia Zorba <sonia.zorba@inaf.it> Date: Thu, 8 Jul 2021 12:31:40 +0200 Subject: [PATCH] Added transfer_details column on job --- 00-tables.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/00-tables.sql b/00-tables.sql index 0c20a82..5e26f4e 100644 --- a/00-tables.sql +++ b/00-tables.sql @@ -128,7 +128,10 @@ CREATE TABLE job ( start_time TIMESTAMP, end_time TIMESTAMP, creation_time TIMESTAMP default CURRENT_TIMESTAMP, + -- store original transfer object (as sent by client) job_info JSONB, + -- store result of transfer protocol negotiation + transfer_details JSONB, processed_blocks INT default NULL, total_blocks INT default NULL, results JSONB, -- GitLab