From 7e5462a7cde938571be0be9cab8bb106610b5300 Mon Sep 17 00:00:00 2001 From: Cristiano Urban <cristiano.urban@inaf.it> Date: Thu, 17 Jun 2021 16:34:48 +0200 Subject: [PATCH] Removed 'busy_state' field. Signed-off-by: Cristiano Urban <cristiano.urban@inaf.it> --- 00-tables.sql | 2 -- 1 file changed, 2 deletions(-) diff --git a/00-tables.sql b/00-tables.sql index 7cdfce4..baa1957 100644 --- a/00-tables.sql +++ b/00-tables.sql @@ -47,7 +47,6 @@ CREATE TABLE node ( async_trans BOOLEAN default false, -- async_trans tells us whether a node is hosted on a cold storage and has to be transferred asynchronously sticky BOOLEAN default false, - busy_state BOOLEAN default NULL, job_id VARCHAR default NULL, -- job_id will likely replace 'busy_state' creator_id VARCHAR default NULL, @@ -90,7 +89,6 @@ CREATE TABLE deleted_node ( async_trans BOOLEAN default NULL, -- async_trans tells us whether a node is hosted on a cold storage and has to be transferred asynchronously sticky BOOLEAN default false, - busy_state BOOLEAN default NULL, job_id VARCHAR default NULL, creator_id VARCHAR default NULL, group_read VARCHAR[] default NULL, -- GitLab