logsquaredn / rototiller

0 stars 0 forks source link

Taskchain #240

Closed phish3y closed 1 year ago

phish3y commented 1 year ago

Adds a Step array to the Job object. Setting us up to support kicking off a Job with multiple steps. The system still doesn't support an endpoint to kick off a job with multiple steps, but the database and models are setup. System still works with one step per job.

frantjc commented 1 year ago

also did we consider that storing the steps in a separate table might cause them to get out of order when pulled back out of the db?

phish3y commented 1 year ago

also did we consider that storing the steps in a separate table might cause them to get out of order when pulled back out of the db?

We will need to add an order column on the model and in the database. I will do that as a follow up