From 7a5ac31a3f400490aa4937b29a11a8eb85287eed Mon Sep 17 00:00:00 2001 From: Alessandro Vullo <avullo@ebi.ac.uk> Date: Thu, 19 Sep 2013 12:56:42 +0000 Subject: [PATCH] Schema version update patch (73 -> 74) --- misc-scripts/ontology/sql/patch_73_74_a.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 misc-scripts/ontology/sql/patch_73_74_a.sql diff --git a/misc-scripts/ontology/sql/patch_73_74_a.sql b/misc-scripts/ontology/sql/patch_73_74_a.sql new file mode 100644 index 0000000000..ed5ea8c9d7 --- /dev/null +++ b/misc-scripts/ontology/sql/patch_73_74_a.sql @@ -0,0 +1,16 @@ +-- patch_73_74_a.sql +-- +-- Title: Insert schema version. +-- +-- Description: +-- Adding schema version to the meta table (set to 74) +-- so that script schema_patcher.pl would work + +INSERT INTO meta (meta_key, meta_value) + VALUES ('schema_version', 74); + +-- Patch identifier +INSERT INTO meta (meta_key, meta_value) + VALUES ('patch', 'patch_73_74_a.sql|schema_version'); + + -- GitLab