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/sessionDb.sql src/hg/lib/sessionDb.sql index 4f4676ebf8d..ae83dbdacff 100644 --- src/hg/lib/sessionDb.sql +++ src/hg/lib/sessionDb.sql @@ -1,17 +1,17 @@ # sessionDb.sql was originally generated by the autoSql program, which also # generated sessionDb.c and sessionDb.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #Session Database CREATE TABLE sessionDb ( - 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;