fix: order by index

This commit is contained in:
Jason Song 2023-01-10 11:52:51 +08:00
parent 335873e1d8
commit 5442440b5e
No known key found for this signature in database
GPG Key ID: 8402EEEE4511A8B5
1 changed files with 1 additions and 1 deletions

View File

@ -37,5 +37,5 @@ func init() {
func GetTaskStepsByTaskID(ctx context.Context, taskID int64) ([]*ActionTaskStep, error) {
var steps []*ActionTaskStep
return steps, db.GetEngine(ctx).Where("task_id=?", taskID).OrderBy("index").Find(&steps)
return steps, db.GetEngine(ctx).Where("task_id=?", taskID).OrderBy("`index` ASC").Find(&steps)
}