Skip to content

Commit

Permalink
missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatMegamind committed Mar 21, 2024
1 parent b12e30b commit b638051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/publishedSchedule.js
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ publishedScheduleRouter.put('/:id', async (req, res) => {
start_time = COALESCE($5, start_time),
end_time = COALESCE($6, end_time),
cohort = COALESCE($7, cohort),
notes = COALESCE($8, notes)
notes = COALESCE($8, notes),
created_on = COALESCE($9, created_on)
WHERE id = $10
Expand Down

0 comments on commit b638051

Please sign in to comment.