選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

v55.go 484B

123456789101112131415161718192021222324
  1. // Copyright 2018 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package migrations
  5. import (
  6. "fmt"
  7. "code.gitea.io/gitea/models"
  8. "xorm.io/xorm"
  9. )
  10. func addModeToDeploKeys(x *xorm.Engine) error {
  11. type DeployKey struct {
  12. Mode models.AccessMode `xorm:"NOT NULL DEFAULT 1"`
  13. }
  14. if err := x.Sync2(new(DeployKey)); err != nil {
  15. return fmt.Errorf("Sync2: %v", err)
  16. }
  17. return nil
  18. }