Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
ada95c1d
Commit
ada95c1d
authored
21 years ago
by
Graham McVicker
Browse files
Options
Downloads
Patches
Plain Diff
added tables stable_id_event and mapping_session
parent
b3a80e46
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sql/table.sql
+23
-0
23 additions, 0 deletions
sql/table.sql
with
23 additions
and
0 deletions
sql/table.sql
+
23
−
0
View file @
ada95c1d
...
...
@@ -781,3 +781,26 @@ CREATE TABLE qtl_feature (
key
loc_idx
(
chromosome_id
,
start
)
);
#
#
tables
for
stable
id
mapping
tracking
#
CREATE
TABLE
mapping_session
(
mapping_session_id
int
(
11
)
NOT
NULL
auto_increment
,
old_db_name
varchar
(
80
)
NOT
NULL
default
''
,
new_db_name
varchar
(
80
)
NOT
NULL
default
''
,
created
timestamp
(
14
)
NOT
NULL
,
rank
int
(
10
)
default
NULL
,
PRIMARY
KEY
(
mapping_session_id
),
UNIQUE
KEY
rank
(
rank
)
)
TYPE
=
MyISAM
;
CREATE
TABLE
stable_id_event
(
old_stable_id
varchar
(
40
)
NOT
NULL
default
''
,
new_stable_id
varchar
(
40
)
NOT
NULL
default
''
,
mapping_session_id
int
(
11
)
NOT
NULL
default
'0'
,
UNIQUE
KEY
tpl_idx
(
old_stable_id
,
new_stable_id
,
mapping_session_id
),
KEY
new_idx
(
new_stable_id
)
)
TYPE
=
MyISAM
;
This diff is collapsed.
Click to expand it.
Preview
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!
Save comment
Cancel
Please
register
or
sign in
to comment