Skip to content
Snippets Groups Projects
Commit b4b46655 authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Change format of genebuild.version in meta table

parent 1e68f230
No related branches found
No related tags found
No related merge requests found
# patch_40_41_g
#
# title: Genebuild version format change
#
# description: Change format of genebuild.version entries in meta table.
UPDATE meta set meta_value = concat('20',substring(meta_value,1,2),'-', substring(meta_value,3,2),'-',substring(meta_value,5)) where meta_key = 'genebuild.version' and meta_value not rlike '^[0-9][0-9][0-9][0-9]-[0-9][0-9]-';
# patch identifier
INSERT INTO meta (meta_key, meta_value) VALUES ('patch', 'patch_41_42_g.sql|genebuild_version_format_change');
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