e662bb5d015c6163c4075fde9bc2eb59e6463c59 kent Tue Dec 14 15:55:16 2010 -0800 Adding genome and assembly to hgHubConnect, and a submit button. Adding dbList to hubConnect table. diff --git src/hg/lib/hubConnect.sql src/hg/lib/hubConnect.sql index ee35d25..4ca835f 100644 --- src/hg/lib/hubConnect.sql +++ src/hg/lib/hubConnect.sql @@ -1,20 +1,22 @@ # foo.sql was originally generated by the autoSql program, which also # generated foo.c and foo.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #Table of track data hub connections. CREATE TABLE hubConnect ( id int unsigned not null auto_increment, # auto-increment item ID shortLabel varchar(255) not null, # Hub short label. longLabel varchar(255) not null, # Hub long label. hubUrl longblob not null, # URL to hub.ra file registrationTime datetime not null, # Time first registered lastOkTime datetime, # Time when hub last was ok lastNotOkTime datetime, # Time when hub last was not ok errorMessage longblob, # If non-empty contains last error message from hub. If empty hub is ok. + dbCount int unsigned not null, # Number of databases hub has data for. + dbList longblob not null, # Comma separated list of databases. #Indices PRIMARY KEY(id), INDEX(hubUrl(32)) );