Files

22 lines
384 B
Go
Raw Permalink Normal View History

2020-06-05 22:01:53 +02:00
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2020-06-05 22:01:53 +02:00
2025-06-27 07:59:55 +02:00
package v1_13
2020-06-05 22:01:53 +02:00
import (
"fmt"
"xorm.io/xorm"
)
2022-11-02 16:54:36 +08: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
}
2023-08-13 21:17:21 +02:00
if err := x.Sync(new(User)); err != nil {
return fmt.Errorf("Sync: %w", err)
2020-06-05 22:01:53 +02:00
}
return nil
}