Skip to content

Commit b7010de

Browse files
committed
fix: sql query
1 parent 2c36360 commit b7010de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db/sql/task.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ func (d *SqlDb) CreateTaskStage(stage db.TaskStage) (res db.TaskStage, err error
1212
insertID, err := d.insert(
1313
"id",
1414
"insert into task__stage "+
15-
"(task_id, start, end, start_output_id, end_output_id, type) VALUES "+
15+
"(task_id, `start`, `end`, start_output_id, end_output_id, type) VALUES "+
1616
"(?, ?, ?, ?, ?, ?)",
1717
stage.TaskID,
1818
stage.Start,

0 commit comments

Comments
 (0)