Skip to content
Snippets Groups Projects
Commit b21779ae authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Renamed 'rap_id' with 'user_id'.

parent f528b72f
No related branches found
No related tags found
No related merge requests found
Pipeline #1679 passed
...@@ -139,8 +139,8 @@ CREATE TABLE deleted_node ( ...@@ -139,8 +139,8 @@ CREATE TABLE deleted_node (
CREATE TABLE users ( CREATE TABLE users (
rap_id VARCHAR NOT NULL, user_id VARCHAR NOT NULL,
user_name VARCHAR NOT NULL, user_name VARCHAR NOT NULL,
e_mail VARCHAR NOT NULL, e_mail VARCHAR NOT NULL,
PRIMARY KEY (rap_id) PRIMARY KEY (user_id)
); );
...@@ -20,7 +20,7 @@ INSERT INTO location (location_type, storage_src_id, storage_dest_id) VALUES ('p ...@@ -20,7 +20,7 @@ INSERT INTO location (location_type, storage_src_id, storage_dest_id) VALUES ('p
/* /*
Initialization test for vospace node table; for now owner_id and group_id are set equal to the rap_id Initialization test for vospace node table; for now owner_id and group_id are set equal to the user_id
*/ */
...@@ -40,6 +40,6 @@ INSERT INTO node (parent_path, parent_relative_path, name, type, owner_id, creat ...@@ -40,6 +40,6 @@ INSERT INTO node (parent_path, parent_relative_path, name, type, owner_id, creat
Initialization test for vospace users table Initialization test for vospace users table
*/ */
INSERT INTO Users (rap_id, user_name, e_mail) VALUES ('3354', 'cristiano.urban', 'cristiano.urban@inaf.it'); INSERT INTO Users (user_id, user_name, e_mail) VALUES ('3354', 'cristiano.urban', 'cristiano.urban@inaf.it');
INSERT INTO Users (rap_id, user_name, e_mail) VALUES ('2048', 'sara.bertocco', 'sara.bertocco@inaf.it'); INSERT INTO Users (user_id, user_name, e_mail) VALUES ('2048', 'sara.bertocco', 'sara.bertocco@inaf.it');
INSERT INTO Users (rap_id, user_name, e_mail) VALUES ('2386', 'sonia.zorba', 'sonia.zorba@inaf.it'); INSERT INTO Users (user_id, user_name, e_mail) VALUES ('2386', 'sonia.zorba', 'sonia.zorba@inaf.it');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment