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