d2800e10690b66bf2ab04804e124958459f0ff0d
chmalee
  Thu Nov 7 11:11:15 2024 -0800
Add a parentDir field to the hubSpace table and make an index on it

diff --git src/hg/lib/hubSpace.as src/hg/lib/hubSpace.as
index 2512928..7991bd8 100644
--- src/hg/lib/hubSpace.as
+++ src/hg/lib/hubSpace.as
@@ -1,14 +1,14 @@
 table hubSpace
 "file storage table for users to store uploaded tracks"
     (
     string userName; "userName of user uploading file"
-    lstring fileName; "name of uploaded files. The actual path to this file is different"
+    string fileName; "name of uploaded files. The actual path to this file is different"
     bigint fileSize; "size of the uploaded file"
     string fileType; "track type of file"
     string creationTime; "first upload time"
     string lastModified; "last change time"
-    lstring hubNameList; "comma separated list of hubs this file is a part of"
     string db; "genome assembly associated with this file"
-    lstring location; "file system path or URL to file"
+    string location; "file system path or URL to file"
     string md5sum; "md5sum of file"
+    string parentDir; "parent directory of file"
     )