Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vospace-file-catalog
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VOSpace INAF
vospace-file-catalog
Commits
b21779ae
Commit
b21779ae
authored
4 years ago
by
Cristiano Urban
Browse files
Options
Downloads
Patches
Plain Diff
Renamed 'rap_id' with 'user_id'.
Signed-off-by:
Cristiano Urban
<
cristiano.urban@inaf.it
>
parent
f528b72f
No related branches found
No related tags found
No related merge requests found
Pipeline
#1679
passed
4 years ago
Stage: dockerize
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
00-init.sql
+2
-2
2 additions, 2 deletions
00-init.sql
05-data.sql
+4
-4
4 additions, 4 deletions
05-data.sql
with
6 additions
and
6 deletions
00-init.sql
+
2
−
2
View file @
b21779ae
...
...
@@ -139,8 +139,8 @@ CREATE TABLE deleted_node (
CREATE
TABLE
users
(
rap
_id
VARCHAR
NOT
NULL
,
user
_id
VARCHAR
NOT
NULL
,
user_name
VARCHAR
NOT
NULL
,
e_mail
VARCHAR
NOT
NULL
,
PRIMARY
KEY
(
rap
_id
)
PRIMARY
KEY
(
user
_id
)
);
This diff is collapsed.
Click to expand it.
05-data.sql
+
4
−
4
View file @
b21779ae
...
...
@@ -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
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
(
rap
_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
(
'3354'
,
'cristiano.urban'
,
'cristiano.urban@inaf.it'
);
INSERT
INTO
Users
(
user
_id
,
user_name
,
e_mail
)
VALUES
(
'2048'
,
'sara.bertocco'
,
'sara.bertocco@inaf.it'
);
INSERT
INTO
Users
(
user
_id
,
user_name
,
e_mail
)
VALUES
(
'2386'
,
'sonia.zorba'
,
'sonia.zorba@inaf.it'
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment