fcfb91470c294d3b991dbd0d24cba67de9ed65cb
hiram
  Tue Apr 21 14:20:57 2026 -0700
create ottoRequest cron watch script refs #31811

diff --git src/hg/lib/ottoRequest.sql src/hg/lib/ottoRequest.sql
index aa25761678b..390d5a351d5 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,	# # 1 == process is complete, 0 == process to be done
+    doneStatus tinyint unsigned not null,	# 0 == pending, 1 == notified/in progress, 2 == complete
     workflowId varchar(255) not null,	# galaxy workflow ID
     completeTime datetime default null,	# date time for process completed and user notified
               #Indices
     PRIMARY KEY(id),
     INDEX(requestType),
     INDEX(doneStatus),
     INDEX(requestTime)
 );