7d86e0ffbe4295c91220ff671c3eeb2009d41408
braney
  Sun Feb 25 11:09:39 2024 -0800
working on quickLift UI

diff --git src/hg/lib/exportedDataHubs.sql src/hg/lib/exportedDataHubs.sql
new file mode 100644
index 0000000..052c843
--- /dev/null
+++ src/hg/lib/exportedDataHubs.sql
@@ -0,0 +1,12 @@
+# exportedDataHubs.sql was originally generated by the autoSql program, which also 
+# generated exportedDataHubs.c and exportedDataHubs.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#registered data hubs for quickLift
+CREATE TABLE exportedDataHubs (
+    id int unsigned not null auto_increment,	# Auto-incrementing ID
+    path longblob not null,	# URL to data hub
+              #Indices
+    PRIMARY KEY(id)
+);