2019-11-10 02:22:19 -07:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-11-10 02:22:19 -07:00
|
|
|
|
2022-11-02 02:54:36 -06:00
|
|
|
package v1_11 //nolint
|
2019-11-10 02:22:19 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RepoWatchMode specifies what kind of watch the user has on a repository
|
|
|
|
type RepoWatchMode int8
|
|
|
|
|
|
|
|
// Watch is connection request for receiving repository notification.
|
|
|
|
type Watch struct {
|
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
Mode RepoWatchMode `xorm:"SMALLINT NOT NULL DEFAULT 1"`
|
|
|
|
}
|
|
|
|
|
2023-07-06 23:31:56 -06:00
|
|
|
func AddModeColumnToWatch(x *xorm.Engine) error {
|
2023-08-13 13:17:21 -06:00
|
|
|
if err := x.Sync(new(Watch)); err != nil {
|
2023-07-06 23:31:56 -06:00
|
|
|
return err
|
2019-11-10 02:22:19 -07:00
|
|
|
}
|
2023-07-06 23:31:56 -06:00
|
|
|
_, err := x.Exec("UPDATE `watch` SET `mode` = 1")
|
2019-11-10 02:22:19 -07:00
|
|
|
return err
|
|
|
|
}
|