1750aea32ec8286fd5d72b12bbae096d3e0a2c85 hiram Thu Aug 14 13:27:07 2014 -0700 allow maximum length for mirror site builds refs #13792 diff --git src/hg/lib/chromInfo.sql src/hg/lib/chromInfo.sql index 2f6d1ac..75f2ed5 100644 --- src/hg/lib/chromInfo.sql +++ src/hg/lib/chromInfo.sql @@ -1,13 +1,13 @@ # chromInfo.sql was originally generated by the autoSql program, which also # generated chromInfo.c and chromInfo.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #Chromosome names and sizes CREATE TABLE chromInfo ( chrom varchar(255) not null, # Chromosome name size int unsigned not null, # Chromosome size fileName varchar(255) null, # Chromosome file (raw one byte per base) #Indices - PRIMARY KEY(chrom(16)) + PRIMARY KEY(chrom(31)) );