The status of a job can be stopped, but the time at which the job was stopped is not saved in the database.
We should either:
- add a new
stopped_at column, in the same way as it's done in the Workflow table
- save the stopped time in the
finished_at column, and possibily refactor the rest to do the same with the Workflow table
The status of a job can be
stopped, but the time at which the job was stopped is not saved in the database.We should either:
stopped_atcolumn, in the same way as it's done in the Workflow tablefinished_atcolumn, and possibily refactor the rest to do the same with the Workflow table