f00300d2825de0091fac8a12b03abfd5f25c3401
hiram
  Fri Mar 12 16:25:54 2021 -0800
version 103 release the names became a bit larger for dm6 refs #27194

diff --git src/hg/lib/ensGtp.sql src/hg/lib/ensGtp.sql
index 8fd13af..6f5c0f5 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(21) NOT NULL,
-  transcript char(21) NOT NULL,
+  gene char(28) NOT NULL,
+  transcript char(31) NOT NULL,
   protein char(24) NOT NULL,
 # INDICES
-  INDEX(gene(21)),
-  UNIQUE(transcript(21)),
+  INDEX(gene(28)),
+  UNIQUE(transcript(31)),
   INDEX(protein(24))
 )