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 0000000000000000000000000000000000000000..ed5ea8c9d704313eff8957984dd41fa2d5245aca --- /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'); + +