2020-01-09 07:17:45 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-01-09 07:17:45 +05:30
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
package v1_12 //nolint
|
2020-01-09 07:17:45 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
func AddReviewCommitAndStale(x *xorm.Engine) error {
|
2020-01-09 07:17:45 +05:30
|
|
|
type Review struct {
|
|
|
|
CommitID string `xorm:"VARCHAR(40)"`
|
|
|
|
Stale bool `xorm:"NOT NULL DEFAULT false"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProtectedBranch struct {
|
|
|
|
DismissStaleApprovals bool `xorm:"NOT NULL DEFAULT false"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Old reviews will have commit ID set to "" and not stale
|
|
|
|
if err := x.Sync2(new(Review)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return x.Sync2(new(ProtectedBranch))
|
|
|
|
}
|