Skip to content
Snippets Groups Projects
Commit d673dfe3 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Added 'node_list' field to job table.

parent 3aba1813
No related branches found
No related tags found
No related merge requests found
Pipeline #2266 passed
......@@ -110,7 +110,7 @@ CREATE TABLE deleted_node (
CREATE TABLE users (
user_id VARCHAR NOT NULL,
user_id VARCHAR NOT NULL,
user_name VARCHAR NOT NULL,
e_mail VARCHAR NOT NULL,
PRIMARY KEY (user_id)
......@@ -132,6 +132,8 @@ CREATE TABLE job (
job_info JSONB,
-- store result of transfer protocol negotiation
transfer_details JSONB,
-- list of nodes selected by the user via UI
node_list JSONB default NULL,
processed_blocks INT default NULL,
total_blocks INT default NULL,
results JSONB,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment