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/hubApi/liftOver.c src/hg/hubApi/liftOver.c index a8866ced49d..1edf5fc2ea2 100644 --- src/hg/hubApi/liftOver.c +++ src/hg/hubApi/liftOver.c @@ -332,23 +332,23 @@ (void) mailViaPipe(toAddr, "liftOver request", msg->string, fromAddr); */ /* some kind of response here back to the request page */ struct jsonWrite *jw = apiStartOutput(); jsonWriteString(jw, "msg", dyStringCannibalize(&msg)); apiFinishOutput(0,NULL,jw); char *ottoTable = cfgOption("ottoTable"); /* probably ottoRequest */ if (isNotEmpty(ottoTable)) { struct sqlConnection *conn = hConnectCentral(); if (sqlTableExists(conn, ottoTable)) { struct dyString *update = newDyString(0); sqlDyStringPrintf(update, - "INSERT INTO %s (requestType, fromDb, toDb, email, comment, requestTime, doneStatus, workflowId) VALUES ( 'liftOver', '%s','%s','%s','%s',now(), 0, 0)", + "INSERT INTO %s (requestType, fromDb, toDb, email, comment, requestTime, doneStatus, buildDir) VALUES ( 'liftOver', '%s','%s','%s','%s',now(), 0, '')", ottoTable, fromGenome, toGenome, email, comment); sqlUpdate(conn, dyStringCannibalize(&update)); } hDisconnectCentral(&conn); } } } /* void apiLiftRequest(char *words[MAX_PATH_INFO]) */