gitea源码

123456789101112131415
  1. // Copyright 2023 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_20
  4. import "xorm.io/xorm"
  5. func AddVersionToActionRunner(x *xorm.Engine) error {
  6. type ActionRunner struct {
  7. Version string `xorm:"VARCHAR(64)"` // the version of act_runner
  8. }
  9. return x.Sync(new(ActionRunner))
  10. }