gitea源码

1234567891011121314151617
  1. // Copyright 2023 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_20
  4. import (
  5. "xorm.io/xorm"
  6. )
  7. func AddPinOrderToIssue(x *xorm.Engine) error {
  8. type Issue struct {
  9. PinOrder int `xorm:"DEFAULT 0"`
  10. }
  11. return x.Sync(new(Issue))
  12. }