gitea源码

12345678910111213141516
  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. func AddScheduleIDForActionRun(x *xorm.Engine) error {
  8. type ActionRun struct {
  9. ScheduleID int64
  10. }
  11. return x.Sync(new(ActionRun))
  12. }