gitea源码

1234567891011121314151617
  1. // Copyright 2023 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_21
  4. import (
  5. "xorm.io/xorm"
  6. )
  7. // UpdateActionsRefIndex updates the index of actions ref field
  8. func UpdateActionsRefIndex(x *xorm.Engine) error {
  9. type ActionRun struct {
  10. Ref string `xorm:"index"` // the commit/tag/… causing the run
  11. }
  12. return x.Sync(new(ActionRun))
  13. }