b3a76833aa84a341e86d0bacef2ff1f6b9b44851 hiram Thu Apr 23 14:30:24 2026 -0700 rename workflowId column to buildDir and expand its size refs #31811 diff --git src/hg/lib/ottoRequest.sql src/hg/lib/ottoRequest.sql index 390d5a351d5..efbad2ff505 100644 --- src/hg/lib/ottoRequest.sql +++ src/hg/lib/ottoRequest.sql @@ -1,23 +1,23 @@ # ottoRequest.sql was originally generated by the autoSql program, which also # generated ottoRequest.c and ottoRequest.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #recording requests coming from from functions such as liftRequest CREATE TABLE ottoRequest ( id int unsigned not null auto_increment, # Auto-incrementing request count requestType varchar(255) not null, # type of request: liftOver or assembly fromDb varchar(255) not null, # can be a database name or a GC[AF]_ GenArk accession toDb varchar(255) not null, # can be a database name or a GC[AF]_ GenArk accession email varchar(255) not null, # user email address comment longtext not null, # other comments from the input form requestTime datetime not null, # date time request was added - doneStatus tinyint unsigned not null, # 0 == pending, 1 == notified/in progress, 2 == complete - workflowId varchar(255) not null, # galaxy workflow ID + doneStatus tinyint unsigned not null, # 0 == pending, 1 == notified/in progress, 2 == complete, 3 == problems + buildDir varchar(1024) not null, # build directory path for alignment workflow completeTime datetime default null, # date time for process completed and user notified #Indices PRIMARY KEY(id), INDEX(requestType), INDEX(doneStatus), INDEX(requestTime) );