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/cartDb.as src/hg/lib/cartDb.as
index ed7f38d4338..7f4cbb65b27 100644
--- src/hg/lib/cartDb.as
+++ src/hg/lib/cartDb.as
@@ -1,11 +1,11 @@
 table cartDb
 "A simple id/contents pair for persistent storing of cart variables"
     (
-    uint id;	"Cart ID"
+    bigint id;	"Cart ID"
     lstring contents; "Contents - encoded variables"
     int reserved;     "Reserved field, currently always zero"
     string firstUse; "First time this was used"
     string lastUse; "Last time this was used"
     int useCount; "Number of times used"
     string sessionKey; "Random key to protect session ids"
     )