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