Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
minerva
core
Commits
abdbf3dd
Commit
abdbf3dd
authored
6 years ago
by
Piotr Gawron
Browse files
Options
Downloads
Patches
Plain Diff
database contains information about model annotations
parent
ab3f3059
Branches
devel_17.1.x
Branches containing commit
Tags
v17.1.4
Tags containing commit
1 merge request
!708
Resolve "add handling of annotations for model"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
persist/src/main/resources/db/migration/12.3.0~alpha.0/V12.3.0.20190319__model_annotations.sql
+15
-0
15 additions, 0 deletions
...on/12.3.0~alpha.0/V12.3.0.20190319__model_annotations.sql
with
15 additions
and
0 deletions
persist/src/main/resources/db/migration/12.3.0~alpha.0/V12.3.0.20190319__model_annotations.sql
0 → 100644
+
15
−
0
View file @
abdbf3dd
CREATE
TABLE
model_miriam_data_table
(
model_id
integer
NOT
NULL
,
miriam_data_id
integer
not
null
,
CONSTRAINT
model_miriam_data_table_modle_fk
FOREIGN
KEY
(
model_id
)
REFERENCES
model_data_table
(
id
)
MATCH
SIMPLE
ON
UPDATE
NO
ACTION
ON
DELETE
NO
ACTION
,
CONSTRAINT
model_miriam_data_table_miriam_data_fk
FOREIGN
KEY
(
miriam_data_id
)
REFERENCES
miriam_data_table
(
id
)
MATCH
SIMPLE
ON
UPDATE
NO
ACTION
ON
DELETE
NO
ACTION
)
WITH
(
OIDS
=
FALSE
);
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