0b7be56749e5bf09c70ab3b2514c2c97c3c941bc
hiram
  Wed Aug 5 10:24:45 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 15c8fdc..8fd13af 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,
+  gene char(21) NOT NULL,
+  transcript char(21) NOT NULL,
   protein char(24) NOT NULL,
 # INDICES
   INDEX(gene(21)),
   UNIQUE(transcript(21)),
   INDEX(protein(24))
 )