2021-01-29 04:28:33 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package migrations
|
|
|
|
|
2021-01-29 21:22:13 +05:30
|
|
|
import "xorm.io/xorm"
|
2021-01-29 04:28:33 +05:30
|
|
|
|
2021-01-29 21:22:13 +05:30
|
|
|
func recreateUserTableToFixDefaultValues(_ *xorm.Engine) error {
|
|
|
|
return nil
|
2021-01-29 04:28:33 +05:30
|
|
|
}
|