2020-06-05 22:01:53 +02:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
func addKeepActivityPrivateUserColumn(x *xorm.Engine) error {
|
|
|
|
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
|
|
|
|
}
|