gitea源码

123456789101112131415
  1. // Copyright 2021 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_16
  4. import (
  5. "xorm.io/xorm"
  6. )
  7. func DropTableRemoteVersion(x *xorm.Engine) error {
  8. // drop the orphaned table introduced in `v199`, now the update checker also uses AppState, do not need this table
  9. _ = x.DropTables("remote_version")
  10. return nil
  11. }