Skip to content
Snippets Groups Projects
Commit 5f5d67be authored by ens-carlos's avatar ens-carlos Committed by Tiago Grego
Browse files

Database schema patch to increase the length of the supported assembly names...

Database schema patch to increase the length of the supported assembly names in the mapping_session table.
parent 5aacbecb
No related branches found
No related tags found
1 merge request!460Core db schema patch to support longer assembly names in the mapping_session table.
-- Copyright [1999-2015] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute
-- Copyright [2016-2019] 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_99_100_c.sql
#
# Title: Update mapping_session.old_assembly and mapping_session.new_assembly columns to VARCHAR(80).
#
# Description:
# Title: Update mapping_session.old_assembly and mapping_session.new_assembly columns to VARCHAR(80).
ALTER TABLE mapping_session MODIFY COLUMN old_assembly VARCHAR(80) NOT NULL DEFAULT '';
ALTER TABLE mapping_session MODIFY COLUMN new_assembly VARCHAR(80) NOT NULL DEFAULT '';
# Patch identifier
INSERT INTO meta (species_id, meta_key, meta_value)
VALUES (NULL, 'patch', 'patch_99_100_c.sql|alter_mapping_session_assembly_length');
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