60a1ffe088a649ec6910b3e8af830f00e36a8626
braney
  Wed Aug 28 12:48:25 2013 -0700
change dbList in hubStatus to be a blob instead of a varchar(255)
diff --git src/hg/lib/hubStatus.as src/hg/lib/hubStatus.as
index d24873c..cb0161c 100644
--- src/hg/lib/hubStatus.as
+++ src/hg/lib/hubStatus.as
@@ -1,16 +1,16 @@
 
 table hubStatus
 "Table of track data hub connection status."
     (
     uint id;	"Auto-incrementing hub ID"
     lstring hubUrl; "URL to hub.ra file"
     string shortLabel;	"Hub short label."
     string longLabel;	"Hub long label."
     uint dbCount;	"Number of databases hub has data for."
-    string dbList; "Comma separated list of databases."
+    lstring dbList; "Comma separated list of databases."
     uint status;        "1 if private"
     string lastOkTime;	"Time when hub last was ok"
     string lastNotOkTime; "Time when hub last was not ok"
     lstring errorMessage; "If non-empty contains last error message from hub. If empty hub is ok."
     string firstAdded;   "Time when hub was first added"
     )