blob: a30a8859f7feaf694bf72635bfcc8a94fef17f07 (
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 //nolint
import "xorm.io/xorm"
func RecreateUserTableToFixDefaultValues(_ *xorm.Engine) error {
return nil
}
|