mirror of https://github.com/go-gitea/gitea.git
22 lines
379 B
Go
22 lines
379 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_14 //nolint
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func AddDismissedReviewColumn(x *xorm.Engine) error {
|
|
type Review struct {
|
|
Dismissed bool `xorm:"NOT NULL DEFAULT false"`
|
|
}
|
|
|
|
if err := x.Sync(new(Review)); err != nil {
|
|
return fmt.Errorf("Sync: %w", err)
|
|
}
|
|
return nil
|
|
}
|