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
105a0526
Commit
105a0526
authored
15 years ago
by
Michael Schuster
Browse files
Options
Downloads
Patches
Plain Diff
Added patch_56_57c, which adds ALT_GENE to the external_db.type enumeration.
parent
b9dc5742
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sql/patch_56_57_c.sql
+12
-0
12 additions, 0 deletions
sql/patch_56_57_c.sql
sql/table.sql
+2
-0
2 additions, 0 deletions
sql/table.sql
with
14 additions
and
0 deletions
sql/patch_56_57_c.sql
0 → 100644
+
12
−
0
View file @
105a0526
#
patch_56_57_c
.
sql
#
#
title
:
Modify
the
external_db
.
type
enumeration
#
#
description
:
#
Modify
the
external_db
.
type
enumeration
so
that
it
also
includes
'ALT_GENE'
.
ALTER
TABLE
external_db
MODIFY
type
ENUM
(
'ARRAY'
,
'ALT_TRANS'
,
'ALT_GENE'
,
'MISC'
,
'LIT'
,
'PRIMARY_DB_SYNONYM'
,
'ENSEMBL'
);
#
patch
identifier
INSERT
INTO
meta
(
species_id
,
meta_key
,
meta_value
)
VALUES
(
NULL
,
'patch'
,
'patch_56_57_c.sql|external_db_type_enum'
);
This diff is collapsed.
Click to expand it.
sql/table.sql
+
2
−
0
View file @
105a0526
...
...
@@ -835,8 +835,10 @@ INSERT INTO meta (species_id, meta_key, meta_value) VALUES (NULL, "schema_versio
#
patches
included
in
this
schema
file
#
NOTE
:
at
beginning
of
release
cycle
,
remove
patch
entries
from
last
release
#
NOTE
:
Avoid
line
breaks
in
values
INSERT
INTO
meta
(
species_id
,
meta_key
,
meta_value
)
VALUES
(
NULL
,
'patch'
,
'patch_56_57_a.sql|schema_version'
);
INSERT
INTO
meta
(
species_id
,
meta_key
,
meta_value
)
VALUES
(
NULL
,
'patch'
,
'patch_56_57_b.sql|affy_analysis_tidy'
);
INSERT
INTO
meta
(
species_id
,
meta_key
,
meta_value
)
VALUES
(
NULL
,
'patch'
,
'patch_56_57_c.sql|external_db_type_enum'
);
################################################################################
...
...
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