Skip to content
Snippets Groups Projects
Commit 6f349e00 authored by Nicola Fulvio Calabria's avatar Nicola Fulvio Calabria
Browse files

added immutable field to nodes

parent c5eb9706
No related branches found
No related tags found
No related merge requests found
Pipeline #11900 passed
...@@ -51,6 +51,7 @@ CREATE TABLE node ( ...@@ -51,6 +51,7 @@ CREATE TABLE node (
-- 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
async_trans BOOLEAN default false, async_trans BOOLEAN default false,
sticky BOOLEAN default false, sticky BOOLEAN default false,
immutable BOOLEAN default false,
-- id of the blocking job running on the node (used to compute busy state) -- id of the blocking job running on the node (used to compute busy state)
job_id VARCHAR default NULL, job_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.
Finish editing this message first!
Please register or to comment