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