gitea源码

123456789101112131415161718
  1. // Copyright 2021 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_16
  4. import (
  5. "xorm.io/xorm"
  6. )
  7. func AddProjectIssueSorting(x *xorm.Engine) error {
  8. // ProjectIssue saves relation from issue to a project
  9. type ProjectIssue struct {
  10. Sorting int64 `xorm:"NOT NULL DEFAULT 0"`
  11. }
  12. return x.Sync(new(ProjectIssue))
  13. }