c4ebea6f863d96a9e9dbfe40ac67193ece91b346 braney Tue May 13 17:26:39 2014 -0700 adding the ability to search hubs for content. diff --git src/hg/lib/hubPublic.sql src/hg/lib/hubPublic.sql index a2d5c9c..c4eaf0b 100644 --- src/hg/lib/hubPublic.sql +++ src/hg/lib/hubPublic.sql @@ -1,16 +1,17 @@ # hubPublic.sql was originally generated by the autoSql program, which also # generated hubPublic.c and hubPublic.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #Table of public track data hub connections. CREATE TABLE hubPublic ( hubUrl longblob not null, # URL to hub.ra file shortLabel varchar(255) not null, # Hub short label. longLabel varchar(255) not null, # Hub long label. registrationTime varchar(255) not null, # Time first registered dbCount int unsigned not null, # Number of databases hub has data for. dbList varchar(255) not null, # Comma separated list of databases. + descriptionUrl longblob not null, # URL to description HTML #Indices PRIMARY KEY(hubUrl(255)) );