Skip to content
Snippets Groups Projects
Commit c33424e2 authored by Graham McVicker's avatar Graham McVicker
Browse files

modified go_xref table def

parent c082ade6
No related branches found
No related tags found
No related merge requests found
......@@ -548,8 +548,9 @@ CREATE TABLE identity_xref(
CREATE TABLE go_xref (
object_xref_id int(10) unsigned DEFAULT '0' NOT NULL,
linkage_type enum('IC', 'IDA', 'IEA', 'IEP', 'IGI', 'IMP',
'IPI', 'ISS', 'NAS', 'ND', 'NR' , 'TAS' ) NOT NULL,
PRIMARY KEY (object_xref_id)
'IPI', 'ISS', 'NAS', 'ND', 'NR' , 'TAS', 'NR') NOT NULL,
KEY (object_xref_id),
UNIQUE(object_xref_id, linkage_type)
);
......
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