fix(tasks): sql query

This commit is contained in:
Denis Gukov 2025-01-05 14:24:22 +05:00
parent b132ce6094
commit a7e65448fb
No known key found for this signature in database
GPG Key ID: 044381366A5D4731

View File

@ -222,7 +222,7 @@ func (d *SqlDb) GetTaskOutputs(projectID int, taskID int) (output []db.TaskOutpu
}
_, err = d.selectAll(&output,
"select task_id, task, time, output from task__output where task_id=? order by id",
"select task_id, time, output from task__output where task_id=? order by id",
taskID)
return
}