Skip to content
Snippets Groups Projects
Commit 5f3d6bf5 authored by Marc Chakiachvili's avatar Marc Chakiachvili
Browse files

Added relation index creation in patch

parent 091d7606
No related branches found
No related tags found
2 merge requests!347Updated ensembl_ontology schema scripts,!347Updated ensembl_ontology schema scripts
......@@ -35,7 +35,9 @@ ALTER TABLE `term` DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
ALTER TABLE `synonym` DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE INDEX ix_closure_subparent_term_id USING BTREE ON closure (`subparent_term_id`);
CREATE INDEX ix_closure_ontology_id USING BTREE ON closure (`ontology_id`);
CREATE INDEX ix_closure_subparent_term_id ON closure (`subparent_term_id`);
CREATE INDEX ix_closure_ontology_id ON closure (`ontology_id`);
CREATE INDEX `ix_relation_parent_term_id` ON relation (`parent_term_id`);
CREATE INDEX `ix_relation_relation_type_id` ON relation (`relation_type_id`);
CREATE INDEX `ix_relation_ontology_id` ON relation (`ontology_id`);
\ No newline at end of file
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