03e5891eb389aab694e8b63f766b116973d60a14
hiram
  Tue Aug 10 12:07:12 2010 -0700
need 24 characters not just 23 for other name
diff --git src/hg/lib/ensGtp.sql src/hg/lib/ensGtp.sql
index 69a942e..6f68cdc 100644
--- src/hg/lib/ensGtp.sql
+++ src/hg/lib/ensGtp.sql
@@ -1,11 +1,11 @@
 # This creates the table holding the relationship between
 # ensemble genes, transcripts, and peptides.
 CREATE TABLE ensGtp (
   gene char(20) NOT NULL,
   transcript char(20) NOT NULL,
-  protein char(23) NOT NULL,
+  protein char(24) NOT NULL,
 # INDICES
   INDEX(gene(19)),
   UNIQUE(transcript(19)),
-  INDEX(protein(23))
+  INDEX(protein(24))
 )