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.as src/hg/lib/sessionDb.as
index 9b2ed7dbce2..c986f969b77 100644
--- src/hg/lib/sessionDb.as
+++ src/hg/lib/sessionDb.as
@@ -1,11 +1,11 @@
 table sessionDb
 "Session Database"
     (
-    uint id;              "auto-increment item ID"
+    bigint id;              "auto-increment item ID"
     lstring contents;     "encoded variables */
     int reserved;         "currently always zero"
     string firstUse;      "first time this was used"
     string lastUse;       "last time this was used"
     uint useCount;        "number of times used"
     string sessionKey;    "random key for session security"
     )