2024-03-01 13:22:40 +01:00
|
|
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package v1_22 //nolint
|
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
func AddUserRepoUnitHintsSetting(x *xorm.Engine) error {
|
|
|
|
type User struct {
|
2024-03-27 09:27:32 +01:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
EnableRepoUnitHints bool `xorm:"NOT NULL DEFAULT true"`
|
2024-03-01 13:22:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return x.Sync(&User{})
|
|
|
|
}
|