mirror of
https://codeberg.org/forgejo/forgejo
synced 2025-07-13 09:32:53 +02:00
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8422 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org> Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
17 lines
354 B
Go
17 lines
354 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_16
|
|
|
|
import (
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func AddProjectIssueSorting(x *xorm.Engine) error {
|
|
// ProjectIssue saves relation from issue to a project
|
|
type ProjectIssue struct {
|
|
Sorting int64 `xorm:"NOT NULL DEFAULT 0"`
|
|
}
|
|
|
|
return x.Sync(new(ProjectIssue))
|
|
}
|