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.as src/hg/lib/userDb.as
index a65ba1e739e..a352285ba2b 100644
--- src/hg/lib/userDb.as
+++ src/hg/lib/userDb.as
@@ -1,11 +1,11 @@
 table userDb
 "User 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"
     )