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/hguidIpAccess.sql src/hg/lib/hguidIpAccess.sql
index af396407b85..2096296cf65 100644
--- src/hg/lib/hguidIpAccess.sql
+++ src/hg/lib/hguidIpAccess.sql
@@ -1,12 +1,12 @@
 # hguidIpAccess.sql creates a database table to store recent accesses from
 # hguid/ip combinations.  The indices facilitate quick insert/update and
 # lookup, as this table will see a lot of traffic.
 
 CREATE TABLE hguidIpAccess (
-    userId int unsigned not null,       # User ID, matching an entry in userDb
+    userId bigint unsigned not null,       # User ID, matching an entry in userDb
     ip varchar(45) not null,            # IP address this userId was seen from
     lastSeen datetime not null,         # Most recent access time for this userId/ip combo
             #Indices
     PRIMARY KEY (userId, ip),
     INDEX lastSeenIdx(lastSeen)
 );