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
5137ad32
Commit
5137ad32
authored
13 years ago
by
tpylak
Browse files
Options
Downloads
Patches
Plain Diff
remove data_sets table from imaging db
SVN: 23292
parent
cd909e41
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/016/schema-016.sql
+0
-30
0 additions, 30 deletions
screening/source/sql/imaging/postgresql/016/schema-016.sql
with
0 additions
and
30 deletions
screening/source/sql/imaging/postgresql/016/schema-016.sql
+
0
−
30
View file @
5137ad32
...
@@ -107,36 +107,6 @@ CREATE TABLE IMAGE_DATA_SETS (
...
@@ -107,36 +107,6 @@ CREATE TABLE IMAGE_DATA_SETS (
CREATE
INDEX
IMAGE_DATA_SETS_CONT_IDX
ON
IMAGE_DATA_SETS
(
CONT_ID
);
CREATE
INDEX
IMAGE_DATA_SETS_CONT_IDX
ON
IMAGE_DATA_SETS
(
CONT_ID
);
CREATE
TABLE
DATA_SETS
(
ID
BIGSERIAL
NOT
NULL
,
PERM_ID
CODE
NOT
NULL
,
---- image dataset specific fields (should be refactored)
FIELDS_WIDTH
INTEGER
,
FIELDS_HEIGHT
INTEGER
,
-- transformation for merged channels on the dataset level, overrides experiment level transformation
IMAGE_TRANSFORMER_FACTORY
BYTEA
,
-- a redundant information if there are timepoint or depth stack data for any spots in this dataset
IS_MULTIDIMENSIONAL
BOOLEAN_CHAR
NOT
NULL
,
-- Which image library should be used to read the image?
-- If not specified, some heuristics are used, but it is slower and does not try with all the available libraries.
IMAGE_LIBRARY_NAME
NAME
,
-- Which reader in the library should be used? Valid only if the library name is specified.
-- Should be specified when library name is specified.
IMAGE_LIBRARY_READER_NAME
NAME
,
---- END image dataset specific fields
CONT_ID
TECH_ID
,
PRIMARY
KEY
(
ID
),
UNIQUE
(
PERM_ID
),
CONSTRAINT
FK_DATA_SET_1
FOREIGN
KEY
(
CONT_ID
)
REFERENCES
CONTAINERS
(
ID
)
ON
DELETE
CASCADE
ON
UPDATE
CASCADE
);
CREATE
INDEX
DATA_SETS_CONT_IDX
ON
DATA_SETS
(
CONT_ID
);
CREATE
TABLE
CHANNELS
(
CREATE
TABLE
CHANNELS
(
ID
BIGSERIAL
NOT
NULL
,
ID
BIGSERIAL
NOT
NULL
,
...
...
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