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/inc/ottoRequest.h src/hg/inc/ottoRequest.h
index df712e28364..df9c7601411 100644
--- src/hg/inc/ottoRequest.h
+++ src/hg/inc/ottoRequest.h
@@ -9,32 +9,32 @@
 #define OTTOREQUEST_NUM_COLS 10
 
 extern char *ottoRequestCommaSepFieldNames;
 
 struct ottoRequest
 /* recording requests coming from from functions such as liftRequest */
     {
     struct ottoRequest *next;  /* Next in singly linked list. */
     unsigned id;	/* Auto-incrementing request count */
     char *requestType;	/* type of request: liftOver or assembly */
     char *fromDb;	/* can be a database name or a GC[AF]_ GenArk accession */
     char *toDb;	/* can be a database name or a GC[AF]_ GenArk accession */
     char *email;	/* user email address */
     char *comment;	/* other comments from the input form */
     char *requestTime;	/* date time request was added */
-    unsigned char doneStatus;	/* 0 == pending, 1 == notified/in progress, 2 == complete */
-    char *workflowId;	/* galaxy workflow ID */
+    unsigned char doneStatus;	/* 0 == pending, 1 == notified/in progress, 2 == complete, 3 == problems */
+    char *buildDir;	/* galaxy workflow ID */
     char *completeTime;	/* date time for process completed and user notified */
     };
 
 void ottoRequestStaticLoad(char **row, struct ottoRequest *ret);
 /* Load a row from ottoRequest table into ret.  The contents of ret will
  * be replaced at the next call to this function. */
 
 struct ottoRequest *ottoRequestLoadByQuery(struct sqlConnection *conn, char *query);
 /* Load all ottoRequest from table that satisfy the query given.  
  * Where query is of the form 'select * from example where something=something'
  * or 'select example.* from example, anotherTable where example.something = 
  * anotherTable.something'.
  * Dispose of this with ottoRequestFreeList(). */
 
 void ottoRequestSaveToDb(struct sqlConnection *conn, struct ottoRequest *el, char *tableName, int updateSize);