mirror of https://github.com/go-gitea/gitea.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
425 B
Go
18 lines
425 B
Go
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
|
|
||
5 years ago
|
import "xorm.io/xorm"
|
||
5 years ago
|
|
||
2 years ago
|
func AddOriginalAuthorOnMigratedReleases(x *xorm.Engine) error {
|
||
5 years ago
|
type Release struct {
|
||
|
ID int64
|
||
|
OriginalAuthor string
|
||
|
OriginalAuthorID int64 `xorm:"index"`
|
||
|
}
|
||
|
|
||
|
return x.Sync2(new(Release))
|
||
|
}
|