Skip to content
Snippets Groups Projects
Commit c0de8135 authored by Ian Longden's avatar Ian Longden
Browse files

dependent_xref table added

parent 10e42abf
No related branches found
No related tags found
No related merge requests found
# patch_54_55_d.sql
#
# title: Add table to store the dependent xrefs
#
# description:
# For a given object_xref store its master if it is dependent on another xref (master)
CREATE TABLE dependent_xref(
object_xref_id INT NOT NULL,
master_xref_id INT NOT NULL,
dependent_xref_id INT NOT NULL,
PRIMARY KEY( object_xref_id ),
KEY dependent ( dependent_xref_id ),
KEY master_idx (master_xref_id)
) COLLATE=latin1_swedish_ci TYPE=MyISAM;
# patch identifier
INSERT INTO meta (species_id, meta_key, meta_value) VALUES (NULL, 'patch', 'patch_54_55_d.sql|add_dependent_xref_table');
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