diff --git a/00-init.sql b/00-init.sql index 0e81527141378aff4bece359a6d85d53bbe9d57a..0137871fb3522675edf0e121697b38bd5462cbb0 100644 --- a/00-init.sql +++ b/00-init.sql @@ -67,6 +67,7 @@ CREATE TABLE node ( -- format is used to distinguish between unstuctured (format=NULL) and structured nodes having a well defined format 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, owner_id VARCHAR default NULL, creator_id VARCHAR default NULL, @@ -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 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, owner_id VARCHAR default NULL, creator_id VARCHAR default NULL,