Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
111c3369
Commit
111c3369
authored
13 years ago
by
gpawel
Browse files
Options
Downloads
Patches
Plain Diff
bugfix: removing dangling coma
SVN: 23611
parent
52594ef3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
screening/source/sql/imaging/postgresql/018/schema-018.sql
+1
-1
1 addition, 1 deletion
screening/source/sql/imaging/postgresql/018/schema-018.sql
with
1 addition
and
1 deletion
screening/source/sql/imaging/postgresql/018/schema-018.sql
+
1
−
1
View file @
111c3369
...
...
@@ -231,7 +231,7 @@ CREATE TABLE ACQUIRED_IMAGES (
CONSTRAINT
FK_IMAGES_1
FOREIGN
KEY
(
CHANNEL_STACK_ID
)
REFERENCES
CHANNEL_STACKS
(
ID
)
ON
DELETE
CASCADE
ON
UPDATE
CASCADE
,
CONSTRAINT
FK_IMAGES_2
FOREIGN
KEY
(
CHANNEL_ID
)
REFERENCES
CHANNELS
(
ID
)
ON
DELETE
CASCADE
ON
UPDATE
CASCADE
,
CONSTRAINT
FK_IMAGES_3
FOREIGN
KEY
(
IMG_ID
)
REFERENCES
IMAGES
(
ID
)
ON
DELETE
SET
NULL
ON
UPDATE
CASCADE
,
CONSTRAINT
FK_IMAGES_4
FOREIGN
KEY
(
THUMBNAIL_ID
)
REFERENCES
IMAGES
(
ID
)
ON
DELETE
SET
NULL
ON
UPDATE
CASCADE
,
CONSTRAINT
FK_IMAGES_4
FOREIGN
KEY
(
THUMBNAIL_ID
)
REFERENCES
IMAGES
(
ID
)
ON
DELETE
SET
NULL
ON
UPDATE
CASCADE
);
CREATE
INDEX
IMAGES_CHANNEL_STACK_IDX
ON
ACQUIRED_IMAGES
(
CHANNEL_STACK_ID
);
...
...
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