65d4e214bd753220cd3f1b9700f107ef1ae648da
chmalee
  Fri May 24 09:36:42 2024 -0700
Make hubSpace autoSql files, haven't created the table yet

diff --git src/hg/lib/hubSpace.as src/hg/lib/hubSpace.as
new file mode 100644
index 0000000..44f6179
--- /dev/null
+++ src/hg/lib/hubSpace.as
@@ -0,0 +1,13 @@
+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"
+    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"
+    )