Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
7fe1f600
Commit
7fe1f600
authored
Aug 19, 2014
by
Sebastien Ponce
Browse files
Readded foreign key constraint FK_DrainingErrors_DJ lost by mistake
Conflicts: castor/db/stager_oracle_create.sql
parent
f4d12478
Changes
2
Hide whitespace changes
Inline
Side-by-side
castor/db/oracleCommon.schema.sql
View file @
7fe1f600
...
...
@@ -1291,6 +1291,11 @@ ENABLE ROW MOVEMENT;
CREATE
INDEX
I_DrainingErrors_DJ_CF
ON
DrainingErrors
(
drainingJob
,
CastorFile
);
ALTER
TABLE
DrainingErrors
ADD
CONSTRAINT
FK_DrainingErrors_DJ
FOREIGN
KEY
(
drainingJob
)
REFERENCES
DrainingJob
(
id
);
ALTER
TABLE
DrainingErrors
ADD
CONSTRAINT
FK_DrainingErrors_CastorFile
FOREIGN
KEY
(
castorFile
)
...
...
castor/db/stager_oracle_create.sql
View file @
7fe1f600
...
...
@@ -1996,9 +1996,9 @@ ALTER TABLE DrainingErrors
REFERENCES DrainingJob (id);
ALTER TABLE DrainingErrors
ADD CONSTRAINT FK_DrainingErrors_
D
C
FOREIGN KEY (
diskCopy
)
REFERENCES
DiskCopy
(id);
ADD CONSTRAINT FK_DrainingErrors_C
astorFile
FOREIGN KEY (
castorFile
)
REFERENCES
CastorFile
(id);
/* Definition of the Disk2DiskCopyJob table. Each line is a disk2diskCopy job to process
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment