4cffc3eb6f43e109452b5b52d1f760cf1ea6a981 jcasper Sun Jun 7 21:47:37 2026 -0700 Adjusting sessionDb and userDb IDs to be 64-bit in the code, since the database is now ready for it and we're crossing the threshold. refs #33554 diff --git src/hg/lib/userDb.sql src/hg/lib/userDb.sql index 12e22ae9d6e..98bca8a31ce 100644 --- src/hg/lib/userDb.sql +++ src/hg/lib/userDb.sql @@ -1,17 +1,17 @@ # userDb.sql was originally generated by the autoSql program, which also # generated userDb.c and userDb.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #User Database CREATE TABLE userDb ( - id int(10) unsigned not null auto_increment, # auto-increment item ID + id bigint(20) unsigned not null auto_increment, # auto-increment item ID contents longblob not null, # encoded variables */ reserved tinyint(4) not null, # currently always zero firstUse datetime not null, # first time this was used lastUse datetime not null, # last time this was used useCount int(11) unsigned not null, # number of times used sessionKey varchar(255) not null, # random key for session security #Indices PRIMARY KEY(id) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 MAX_ROWS=10000000 AVG_ROW_LENGTH=8655 PACK_KEYS=1;