Skip to content
Snippets Groups Projects
Commit 07da9c2f authored by Thomas Maurel's avatar Thomas Maurel
Browse files

Schema patch to update Vertebrates division names in the meta table from...

Schema patch to update Vertebrates division names in the meta table from Ensembl to EnsemblVertebrates for consistency. See declaration for details: https://www.ebi.ac.uk/panda/jira/browse/ENSINT-104.
parent 6bb05c97
No related branches found
No related tags found
6 merge requests!304Schema patch to update Vertebrates division names in the meta table f…,!342Feature/schema update 96,!299Merge e! 95 version bumps into master,!342Feature/schema update 96,!304Schema patch to update Vertebrates division names in the meta table f…,!299Merge e! 95 version bumps into master
-- Copyright [1999-2015] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute
-- Copyright [2016-2018] 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_94_95_b.sql
#
# Title: Update vertebrates division name
#
# Description:
# Update Vertebrates division name from Ensembl to EnsemblVertebrates in the meta table for consistency
UPDATE meta SET meta_value = 'EnsemblVertebrates' where meta_key = 'species.division' and meta_value = 'Ensembl';
# Patch identifier
INSERT INTO meta (species_id, meta_key, meta_value)
VALUES (NULL, 'patch', 'patch_94_95_b.sql|vertebrate_division_rename');
\ No newline at end of file
......@@ -316,6 +316,9 @@ INSERT INTO meta (species_id, meta_key, meta_value) VALUES
INSERT INTO meta (species_id, meta_key, meta_value)
VALUES (NULL, 'patch', 'patch_94_95_a.sql|schema_version');
INSERT INTO meta (species_id, meta_key, meta_value)
VALUES (NULL, 'patch', 'patch_94_95_b.sql|vertebrate_division_rename');
/**
@table meta_coord
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment