2019-10-13 15:23:14 +02:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-10-13 15:23:14 +02:00
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
package v1_10 //nolint
|
2019-10-13 15:23:14 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
|
|
|
|
2019-10-17 11:26:49 +02:00
|
|
|
"xorm.io/xorm"
|
2019-10-13 15:23:14 +02:00
|
|
|
)
|
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
func AddTaskTable(x *xorm.Engine) error {
|
2020-07-22 16:27:22 +02:00
|
|
|
// TaskType defines task type
|
|
|
|
type TaskType int
|
|
|
|
|
|
|
|
// TaskStatus defines task status
|
|
|
|
type TaskStatus int
|
|
|
|
|
2019-10-13 15:23:14 +02:00
|
|
|
type Task struct {
|
|
|
|
ID int64
|
|
|
|
DoerID int64 `xorm:"index"` // operator
|
|
|
|
OwnerID int64 `xorm:"index"` // repo owner id, when creating, the repoID maybe zero
|
|
|
|
RepoID int64 `xorm:"index"`
|
2020-07-22 16:27:22 +02:00
|
|
|
Type TaskType
|
|
|
|
Status TaskStatus `xorm:"index"`
|
2019-10-13 15:23:14 +02:00
|
|
|
StartTime timeutil.TimeStamp
|
|
|
|
EndTime timeutil.TimeStamp
|
|
|
|
PayloadContent string `xorm:"TEXT"`
|
|
|
|
Errors string `xorm:"TEXT"` // if task failed, saved the error reason
|
|
|
|
Created timeutil.TimeStamp `xorm:"created"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Repository struct {
|
|
|
|
Status int `xorm:"NOT NULL DEFAULT 0"`
|
|
|
|
}
|
|
|
|
|
2023-08-13 21:17:21 +02:00
|
|
|
return x.Sync(new(Task), new(Repository))
|
2019-10-13 15:23:14 +02:00
|
|
|
}
|