Files

28 lines
711 B
Go
Raw Permalink Normal View History

2019-04-03 03:25:05 +08:00
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2019-04-03 03:25:05 +08:00
2025-06-27 07:59:55 +02:00
package v1_9
2019-04-03 03:25:05 +08:00
import (
"code.gitea.io/gitea/modules/timeutil"
2019-04-03 03:25:05 +08:00
2019-10-17 17:26:49 +08:00
"xorm.io/xorm"
2019-04-03 03:25:05 +08:00
)
2022-11-02 16:54:36 +08:00
func AddUploaderIDForAttachment(x *xorm.Engine) error {
2019-04-03 03:25:05 +08: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
DownloadCount int64 `xorm:"DEFAULT 0"`
Size int64 `xorm:"DEFAULT 0"`
CreatedUnix timeutil.TimeStamp `xorm:"created"`
2019-04-03 03:25:05 +08:00
}
2023-08-13 21:17:21 +02:00
return x.Sync(new(Attachment))
2019-04-03 03:25:05 +08:00
}