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

Added fs_path (filesystem path) to nodes and deleted_nodes tables for path refactoring

parent aadad088
No related branches found
No related tags found
No related merge requests found
Pipeline #2371 passed
......@@ -37,6 +37,7 @@ CREATE TABLE node (
node_id BIGSERIAL NOT NULL,
parent_path LTREE default NULL,
parent_relative_path LTREE default NULL,
fs_path VARCHAR default NULL,
name VARCHAR NOT NULL,
os_name VARCHAR default NULL,
tstamp_wrapper_dir VARCHAR default NULL,
......@@ -77,6 +78,7 @@ CREATE TABLE deleted_node (
node_id BIGSERIAL NOT NULL,
parent_path LTREE default NULL,
parent_relative_path LTREE default NULL,
fs_path VARCHAR default NULL,
name VARCHAR NOT NULL,
os_name VARCHAR default NULL,
tstamp_wrapper_dir VARCHAR default NULL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment