b566a2ec68dae9171ed1c166c1ad473319efd062 braney Thu Dec 1 12:12:08 2011 -0800 add a firstAdded time to the hubStatus table. #5138 diff --git src/hg/lib/hubStatus.sql src/hg/lib/hubStatus.sql index f3d2a58..d9d474b 100644 --- src/hg/lib/hubStatus.sql +++ src/hg/lib/hubStatus.sql @@ -3,18 +3,19 @@ # an object which can be loaded and saved from RAM in a fairly # automatic way. #Table of track data hub connection status. CREATE TABLE hubStatus ( id int unsigned not null auto_increment, # Auto-incrementing hub ID 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. dbCount int unsigned not null, # Number of databases hub has data for. dbList varchar(255) not null, # Comma separated list of databases. status int unsigned not null, # 1 if private lastOkTime varchar(255) not null, # Time when hub last was ok lastNotOkTime varchar(255) not null, # Time when hub last was not ok errorMessage longblob not null, # If non-empty contains last error message from hub. If empty hub is ok. + firstAdded varchar(255) not null, # Time when hub was first added #Indices PRIMARY KEY(id) );