2020-06-05 14:01:53 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-06-05 14:01:53 -06:00
|
|
|
|
2022-11-02 02:54:36 -06:00
|
|
|
package v1_13 //nolint
|
2020-06-05 14:01:53 -06:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 02:54:36 -06:00
|
|
|
func AddKeepActivityPrivateUserColumn(x *xorm.Engine) error {
|
2020-06-05 14:01:53 -06:00
|
|
|
type User struct {
|
2021-01-28 15:58:33 -07:00
|
|
|
KeepActivityPrivate bool `xorm:"NOT NULL DEFAULT false"`
|
2020-06-05 14:01:53 -06:00
|
|
|
}
|
|
|
|
|
2023-08-13 13:17:21 -06:00
|
|
|
if err := x.Sync(new(User)); err != nil {
|
|
|
|
return fmt.Errorf("Sync: %w", err)
|
2020-06-05 14:01:53 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|