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

added parent to the unmapped_object table to allow adding what the parent was...

added parent to the unmapped_object table to allow adding what the parent was for depenednet xrefs etc
parent edded9db
No related branches found
No related tags found
No related merge requests found
# patch_42_43_a
#
# title: unmapped_object.parent
#
# description:
# Add parent column to unmapped_object
ALTER TABLE unmapped_object ADD COLUMN parent VARCHAR(255) DEFAULT NULL;
# patch identifier
INSERT INTO meta (meta_key, meta_value) VALUES ('patch', 'patch_42_43_a.sql|unmapped_object.parent');
......@@ -1526,7 +1526,7 @@ CREATE TABLE unmapped_object (
ensembl_id INT(10) UNSIGNED DEFAULT '0',
ensembl_object_type ENUM('RawContig','Transcript','Gene','Translation')
DEFAULT 'RawContig',
parent VARCHAR(255) DEFAULT NULL,
PRIMARY KEY (unmapped_object_id),
KEY id_idx (identifier),
KEY anal_idx (analysis_id),
......
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