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
5a812c22
Commit
5a812c22
authored
18 years ago
by
Glenn Proctor
Browse files
Options
Downloads
Patches
Plain Diff
Added patches for v44.
parent
ce1fc171
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
+5
-2
5 additions, 2 deletions
sql/table.sql
with
5 additions
and
2 deletions
sql/table.sql
+
5
−
2
View file @
5a812c22
...
...
@@ -567,8 +567,8 @@ CREATE TABLE translation_stable_id (
modified_date
DATETIME
NOT
NULL
,
PRIMARY
KEY
(
translation_id
),
UNIQUE
(
stable_id
,
version
)
KEY
stable_id_idx
(
stable_id
,
version
)
)
COLLATE
=
latin1_swedish_ci
TYPE
=
MyISAM
;
...
...
@@ -792,6 +792,7 @@ CREATE TABLE external_db (
display_label_linkable
BOOLEAN
DEFAULT
0
NOT
NULL
,
priority
INT
NOT
NULL
,
db_display_name
VARCHAR
(
255
),
type
ENUM
(
'ARRAY'
,
'ALT_TRANS'
,
'MISC'
,
'LIT'
),
PRIMARY
KEY
(
external_db_id
)
...
...
@@ -870,6 +871,8 @@ INSERT INTO meta (meta_key, meta_value) VALUES ("schema_version", "44");
#
NOTE
:
at
beginning
of
release
cycle
,
remove
patch
entries
from
last
release
INSERT
INTO
meta
(
meta_key
,
meta_value
)
VALUES
(
'patch'
,
'patch_43_44_a.sql|rationalise_key_columns'
);
INSERT
INTO
meta
(
meta_key
,
meta_value
)
VALUES
(
'patch'
,
'patch_43_44_b.sql|optimise_ditag_tables'
);
INSERT
INTO
meta
(
meta_key
,
meta_value
)
VALUES
(
'patch'
,
'patch_43_44_c.sql|external_db_type'
);
INSERT
INTO
meta
(
meta_key
,
meta_value
)
VALUES
(
'patch'
,
'patch_43_44_d.sql|translation_stable_id_unique'
);
################################################################################
#
...
...
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