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

Minor change

parent 62d3f368
No related branches found
No related tags found
No related merge requests found
Pipeline #941 passed
...@@ -101,7 +101,7 @@ CREATE TABLE deleted_node ( ...@@ -101,7 +101,7 @@ CREATE TABLE deleted_node (
os_name VARCHAR default NULL, os_name VARCHAR default NULL,
tstamp_wrapper_dir VARCHAR default NULL, tstamp_wrapper_dir VARCHAR default NULL,
type NodeType NOT NULL, type NodeType NOT NULL,
location_id SMALLINT NOT NULL, location_id SMALLINT default NULL,
format VARCHAR default NULL, format VARCHAR default NULL,
-- 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,
...@@ -129,7 +129,8 @@ CREATE TABLE deleted_node ( ...@@ -129,7 +129,8 @@ CREATE TABLE deleted_node (
protocols TEXT[] default NULL, protocols TEXT[] default NULL,
-- add a deleted_on timestamp to keep track -- add a deleted_on timestamp to keep track
deleted_on TIMESTAMP default CURRENT_TIMESTAMP, deleted_on TIMESTAMP default CURRENT_TIMESTAMP,
PRIMARY KEY (node_id) PRIMARY KEY (node_id),
FOREIGN KEY (location_id) REFERENCES location (location_id)
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment