06d623ef4472e1b1661f8a33c991c3f2139cf302
hiram
  Wed Aug 5 10:22:00 2015 -0700
ensGene names can be up to 21 characters refs #15796

diff --git src/hg/lib/ensGtp.sql src/hg/lib/ensGtp.sql
index 6f68cdc..15c8fdc 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(24) NOT NULL,
 # INDICES
-  INDEX(gene(19)),
-  UNIQUE(transcript(19)),
+  INDEX(gene(21)),
+  UNIQUE(transcript(21)),
   INDEX(protein(24))
 )