cf91694df806cf52913c294e6d2cf0452373f8fc
hiram
  Wed Jan 21 21:45:19 2026 -0800
add a doneStatus and a completeTime elements to the table definition refs #31811

diff --git src/hg/lib/ottoRequest.as src/hg/lib/ottoRequest.as
index 91a65e7c857..70cf8540a63 100644
--- src/hg/lib/ottoRequest.as
+++ src/hg/lib/ottoRequest.as
@@ -1,11 +1,13 @@
 table ottoRequest
 "recording requests coming from from functions such as liftRequest"
     (
     uint id;	      "Auto-incrementing request count"
     string fromDb;    "can be a database name or a GC[AF]_ GenArk accession"
     string toDb;      "can be a database name or a GC[AF]_ GenArk accession"
     string email;     "user email address"
     lstring comment;   "other comments from the input form"
     string requestTime; "date time request was added"
+    ubyte doneStatus;   "# 1 == alignment is complete, 0 == alignment to be done"
+    string completeTime; "date time for alignment completed and user notified"
     )