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
6e83c433
Commit
6e83c433
authored
8 years ago
by
Magali Ruffier
Browse files
Options
Downloads
Patches
Plain Diff
Update to release 85
parent
0e45172b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
modules/Bio/EnsEMBL/ApiVersion.pm
+1
-1
1 addition, 1 deletion
modules/Bio/EnsEMBL/ApiVersion.pm
sql/patch_84_85_a.sql
+26
-0
26 additions, 0 deletions
sql/patch_84_85_a.sql
sql/table.sql
+2
-10
2 additions, 10 deletions
sql/table.sql
with
29 additions
and
11 deletions
modules/Bio/EnsEMBL/ApiVersion.pm
+
1
−
1
View file @
6e83c433
...
...
@@ -55,7 +55,7 @@ use base qw( Exporter );
our
@EXPORT
=
qw( software_version )
;
my
$API_VERSION
=
8
4
;
my
$API_VERSION
=
8
5
;
sub
software_version
{
return
$API_VERSION
}
...
...
This diff is collapsed.
Click to expand it.
sql/patch_84_85_a.sql
0 → 100644
+
26
−
0
View file @
6e83c433
-- Copyright [1999-2016] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
#
patch_84_85_a
.
sql
#
#
Title
:
Update
schema
version
.
#
#
Description
:
#
Update
schema_version
in
meta
table
to
85
.
UPDATE
meta
SET
meta_value
=
'85'
WHERE
meta_key
=
'schema_version'
;
#
Patch
identifier
INSERT
INTO
meta
(
species_id
,
meta_key
,
meta_value
)
VALUES
(
NULL
,
'patch'
,
'patch_84_85_a.sql|schema_version'
);
This diff is collapsed.
Click to expand it.
sql/table.sql
+
2
−
10
View file @
6e83c433
...
...
@@ -302,21 +302,13 @@ CREATE TABLE IF NOT EXISTS meta (
#
Add
schema
type
and
schema
version
to
the
meta
table
.
INSERT
INTO
meta
(
species_id
,
meta_key
,
meta_value
)
VALUES
(
NULL
,
'schema_type'
,
'core'
),
(
NULL
,
'schema_version'
,
'8
4
'
);
(
NULL
,
'schema_version'
,
'8
5
'
);
#
Patches
included
in
this
schema
file
:
#
NOTE
:
At
start
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_83_84_a.sql|schema_version'
);
INSERT
INTO
meta
(
species_id
,
meta_key
,
meta_value
)
VALUES
(
NULL
,
'patch'
,
'patch_83_84_b.sql|xref.version_default'
);
INSERT
INTO
meta
(
species_id
,
meta_key
,
meta_value
)
VALUES
(
NULL
,
'patch'
,
'patch_83_84_c.sql|protein_feature_unique'
);
INSERT
INTO
meta
(
species_id
,
meta_key
,
meta_value
)
VALUES
(
NULL
,
'patch'
,
'patch_83_84_d.sql|longer_synonym'
);
INSERT
INTO
meta
(
species_id
,
meta_key
,
meta_value
)
VALUES
(
NULL
,
'patch'
,
'patch_83_84_e.sql|nullable_versions'
);
VALUES
(
NULL
,
'patch'
,
'patch_84_85_a.sql|schema_version'
);
/**
...
...
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