2019-04-02 13:25:05 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-04-02 13:25:05 -06:00
|
|
|
|
2022-11-02 02:54:36 -06:00
|
|
|
package v1_9 //nolint
|
2019-04-02 13:25:05 -06:00
|
|
|
|
|
|
|
import (
|
2019-08-15 08:46:21 -06:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2019-04-02 13:25:05 -06:00
|
|
|
|
2019-10-17 03:26:49 -06:00
|
|
|
"xorm.io/xorm"
|
2019-04-02 13:25:05 -06:00
|
|
|
)
|
|
|
|
|
2022-11-02 02:54:36 -06:00
|
|
|
func AddUploaderIDForAttachment(x *xorm.Engine) error {
|
2019-04-02 13:25:05 -06:00
|
|
|
type Attachment struct {
|
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
UUID string `xorm:"uuid UNIQUE"`
|
|
|
|
IssueID int64 `xorm:"INDEX"`
|
|
|
|
ReleaseID int64 `xorm:"INDEX"`
|
|
|
|
UploaderID int64 `xorm:"INDEX DEFAULT 0"`
|
|
|
|
CommentID int64
|
|
|
|
Name string
|
2019-08-15 08:46:21 -06:00
|
|
|
DownloadCount int64 `xorm:"DEFAULT 0"`
|
|
|
|
Size int64 `xorm:"DEFAULT 0"`
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"created"`
|
2019-04-02 13:25:05 -06:00
|
|
|
}
|
|
|
|
|
2023-08-13 13:17:21 -06:00
|
|
|
return x.Sync(new(Attachment))
|
2019-04-02 13:25:05 -06:00
|
|
|
}
|