8ccceea1c52492b6a869af8de3190a387d4b6550 braney Tue Mar 12 13:41:09 2024 -0700 added exportedDataHubs dialog and code to deal with quickLifted hubs diff --git src/hg/lib/exportedDataHubs.sql src/hg/lib/exportedDataHubs.sql index 052c843..86b56bf 100644 --- src/hg/lib/exportedDataHubs.sql +++ src/hg/lib/exportedDataHubs.sql @@ -1,12 +1,15 @@ # 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 + db varchar(255) not null, # Native assembly + label varchar(255) not null, # Label + description varchar(255) not null, # Description path longblob not null, # URL to data hub #Indices PRIMARY KEY(id) );