2019-04-03 00:55:05 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-04-03 00:55:05 +05:30
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
package v1_9 //nolint
|
2019-04-03 00:55:05 +05:30
|
|
|
|
|
|
|
import (
|
2019-08-15 20:16:21 +05:30
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2019-04-03 00:55:05 +05:30
|
|
|
|
2019-10-17 14:56:49 +05:30
|
|
|
"xorm.io/xorm"
|
2019-04-03 00:55:05 +05:30
|
|
|
)
|
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
func AddUploaderIDForAttachment(x *xorm.Engine) error {
|
2019-04-03 00:55:05 +05:30
|
|
|
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 20:16:21 +05:30
|
|
|
DownloadCount int64 `xorm:"DEFAULT 0"`
|
|
|
|
Size int64 `xorm:"DEFAULT 0"`
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"created"`
|
2019-04-03 00:55:05 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
return x.Sync2(new(Attachment))
|
|
|
|
}
|