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
67f0ec65
Commit
67f0ec65
authored
20 years ago
by
Graham McVicker
Browse files
Options
Downloads
Patches
Plain Diff
changed dna/protein_align_feature table indexes, added max_length to meta_coord table
parent
8a513ee7
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
+3
-2
3 additions, 2 deletions
sql/table.sql
with
3 additions
and
2 deletions
sql/table.sql
+
3
−
2
View file @
67f0ec65
...
...
@@ -206,7 +206,7 @@ CREATE TABLE protein_align_feature (
cigar_line
text
,
PRIMARY
KEY
(
protein_align_feature_id
),
KEY
seq_region_idx
(
seq_region_id
,
analysis_id
,
score
,
seq_region_start
),
KEY
seq_region_idx
(
seq_region_id
,
analysis_id
,
seq_region_start
,
score
),
KEY
hit_idx
(
hit_name
),
KEY
analysis_idx
(
analysis_id
)
...
...
@@ -235,7 +235,7 @@ CREATE TABLE dna_align_feature (
cigar_line
text
,
PRIMARY
KEY
(
dna_align_feature_id
),
KEY
seq_region_idx
(
seq_region_id
,
analysis_id
,
score
,
seq_region_start
),
KEY
seq_region_idx
(
seq_region_id
,
analysis_id
,
seq_region_start
,
score
),
KEY
hit_idx
(
hit_name
),
KEY
analysis_idx
(
analysis_id
)
...
...
@@ -1114,6 +1114,7 @@ CREATE TABLE meta_coord (
table_name
VARCHAR
(
40
)
NOT
NULL
,
coord_system_id
INT
NOT
NULL
,
max_length
INT
UNIQUE
(
table_name
,
coord_system_id
)
...
...
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