Files

11 lines
208 B
Go
Raw Permalink Normal View History

2021-01-28 23:58:33 +01:00
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2021-01-28 23:58:33 +01:00
2025-06-27 07:59:55 +02:00
package v1_14
2021-01-28 23:58:33 +01:00
2021-01-29 09:52:13 -06:00
import "xorm.io/xorm"
2021-01-28 23:58:33 +01:00
2022-11-02 16:54:36 +08:00
func RecreateUserTableToFixDefaultValues(_ *xorm.Engine) error {
2021-01-29 09:52:13 -06:00
return nil
2021-01-28 23:58:33 +01:00
}