Skip to content
Snippets Groups Projects
Commit 843f7889 authored by Alessandro Vullo's avatar Alessandro Vullo
Browse files

Added schema_version and included patches to ontology schema file.

parent a046c959
No related branches found
No related tags found
No related merge requests found
......@@ -12,8 +12,16 @@ CREATE TABLE meta (
UNIQUE INDEX key_value_idx (meta_key, meta_value)
);
# Add schema type and schema version to the meta table
INSERT INTO meta (meta_key, meta_value) VALUES
('schema_type', 'ontology'),
('schema_version', '72');
# Patches included in this schema file
INSERT INTO meta (meta_key, meta_value)
VALUES ('patch', 'patch_71_72b.sql|alt_id table');
INSERT INTO meta (meta_key, meta_value)
VALUES ('schema_type', 'ontology');
VALUES ('patch', 'patch_71_72c.sql|schema_version');
CREATE TABLE ontology (
ontology_id INT UNSIGNED NOT NULL AUTO_INCREMENT,
......
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