blob: aa93eec19b0ae8bca9423d1ef1437861108b89ae (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_14
import "xorm.io/xorm"
func RecreateUserTableToFixDefaultValues(_ *xorm.Engine) error {
return nil
}
|