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

Removed 'busy_state' field.

parent 5be547b5
No related branches found
No related tags found
No related merge requests found
Pipeline #1985 passed
...@@ -47,7 +47,6 @@ CREATE TABLE node ( ...@@ -47,7 +47,6 @@ CREATE TABLE node (
async_trans BOOLEAN default false, async_trans BOOLEAN default false,
-- async_trans tells us whether a node is hosted on a cold storage and has to be transferred asynchronously -- async_trans tells us whether a node is hosted on a cold storage and has to be transferred asynchronously
sticky BOOLEAN default false, sticky BOOLEAN default false,
busy_state BOOLEAN default NULL,
job_id VARCHAR default NULL, job_id VARCHAR default NULL,
-- job_id will likely replace 'busy_state' -- job_id will likely replace 'busy_state'
creator_id VARCHAR default NULL, creator_id VARCHAR default NULL,
...@@ -90,7 +89,6 @@ CREATE TABLE deleted_node ( ...@@ -90,7 +89,6 @@ CREATE TABLE deleted_node (
async_trans BOOLEAN default NULL, async_trans BOOLEAN default NULL,
-- async_trans tells us whether a node is hosted on a cold storage and has to be transferred asynchronously -- async_trans tells us whether a node is hosted on a cold storage and has to be transferred asynchronously
sticky BOOLEAN default false, sticky BOOLEAN default false,
busy_state BOOLEAN default NULL,
job_id VARCHAR default NULL, job_id VARCHAR default NULL,
creator_id VARCHAR default NULL, creator_id VARCHAR default NULL,
group_read VARCHAR[] default NULL, group_read VARCHAR[] default NULL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment