Skip to content
Snippets Groups Projects
Commit b432e567 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Added sticky flag to nodes

parent d288eb62
No related branches found
No related tags found
No related merge requests found
Pipeline #985 passed
...@@ -67,6 +67,7 @@ CREATE TABLE node ( ...@@ -67,6 +67,7 @@ CREATE TABLE node (
-- format is used to distinguish between unstuctured (format=NULL) and structured nodes having a well defined format -- format is used to distinguish between unstuctured (format=NULL) and structured nodes having a well defined format
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,
busy_state BOOLEAN default NULL, busy_state BOOLEAN default NULL,
owner_id VARCHAR default NULL, owner_id VARCHAR default NULL,
creator_id VARCHAR default NULL, creator_id VARCHAR default NULL,
...@@ -106,6 +107,7 @@ CREATE TABLE deleted_node ( ...@@ -106,6 +107,7 @@ CREATE TABLE deleted_node (
-- format is used to distinguish between unstuctured (format=NULL) and structured nodes having a well defined format -- format is used to distinguish between unstuctured (format=NULL) and structured nodes having a well defined format
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,
busy_state BOOLEAN default NULL, busy_state BOOLEAN default NULL,
owner_id VARCHAR default NULL, owner_id VARCHAR default NULL,
creator_id VARCHAR default NULL, creator_id VARCHAR default NULL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment