mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
5 years ago
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a MIT-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
2 years ago
|
package v1_10 //nolint
|
||
5 years ago
|
|
||
|
import (
|
||
|
"code.gitea.io/gitea/modules/timeutil"
|
||
|
|
||
5 years ago
|
"xorm.io/xorm"
|
||
5 years ago
|
)
|
||
|
|
||
2 years ago
|
func AddTaskTable(x *xorm.Engine) error {
|
||
4 years ago
|
// TaskType defines task type
|
||
|
type TaskType int
|
||
|
|
||
|
// TaskStatus defines task status
|
||
|
type TaskStatus int
|
||
|
|
||
5 years ago
|
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"`
|
||
4 years ago
|
Type TaskType
|
||
|
Status TaskStatus `xorm:"index"`
|
||
5 years ago
|
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"`
|
||
|
}
|
||
|
|
||
|
return x.Sync2(new(Task), new(Repository))
|
||
|
}
|