gitea源码

1234567891011121314
  1. // Copyright 2021 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_14
  4. import (
  5. "xorm.io/xorm"
  6. )
  7. func CommentTypeDeleteBranchUseOldRef(x *xorm.Engine) error {
  8. _, err := x.Exec("UPDATE comment SET old_ref = commit_sha, commit_sha = '' WHERE type = 11")
  9. return err
  10. }