2019-11-10 14:52:19 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-11-10 14:52:19 +05:30
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
package v1_11 //nolint
|
2019-11-10 14:52:19 +05:30
|
|
|
|
|
|
|
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-07 11:01:56 +05:30
|
|
|
func AddModeColumnToWatch(x *xorm.Engine) error {
|
2023-08-14 00:47:21 +05:30
|
|
|
if err := x.Sync(new(Watch)); err != nil {
|
2023-07-07 11:01:56 +05:30
|
|
|
return err
|
2019-11-10 14:52:19 +05:30
|
|
|
}
|
2023-07-07 11:01:56 +05:30
|
|
|
_, err := x.Exec("UPDATE `watch` SET `mode` = 1")
|
2019-11-10 14:52:19 +05:30
|
|
|
return err
|
|
|
|
}
|