Files
Atay-Makhzan/models/migrations/v168.go
T

12 lines
285 B
Go
Raw Normal View History

2021-01-28 23:58:33 +01:00
// 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 09:52:13 -06:00
import "xorm.io/xorm"
2021-01-28 23:58:33 +01:00
2021-01-29 09:52:13 -06:00
func recreateUserTableToFixDefaultValues(_ *xorm.Engine) error {
return nil
2021-01-28 23:58:33 +01:00
}