From a37a68f5d147a11e4be65eb7588e7f0df529152e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kusalananda=20K=C3=A4h=C3=A4ri?= <ak4@sanger.ac.uk> Date: Wed, 7 Nov 2007 12:20:30 +0000 Subject: [PATCH] Add column 'coord_xref_id' to the 'coordinate_xref' table as a unique key. --- misc-scripts/xref_mapping/sql/table.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc-scripts/xref_mapping/sql/table.sql b/misc-scripts/xref_mapping/sql/table.sql index 8d2c0433e8..8a6212c03c 100755 --- a/misc-scripts/xref_mapping/sql/table.sql +++ b/misc-scripts/xref_mapping/sql/table.sql @@ -149,6 +149,7 @@ CREATE TABLE pairs ( -- on the knownGenes table from UCSC. CREATE TABLE coordinate_xref ( + coord_xref_id INT UNSIGNED NOT NULL AUTO_INCREMENT, source_id INT UNSIGNED NOT NULL, species_id INT UNSIGNED NOT NULL, accession VARCHAR(255) NOT NULL, @@ -161,7 +162,7 @@ CREATE TABLE coordinate_xref ( exonStarts TEXT NOT NULL, exonEnds TEXT NOT NULL, - -- Me ain't sure 'bout these 'uns + UNIQUE KEY coord_xref_idx(coord_xref_id), INDEX start_pos_idx(species_id, chromosome, strand, txStart), INDEX end_pos_idx(species_id, chromosome, strand, txEnd) ); -- GitLab