mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 06:52:37 +00:00
c0d41b1b77
* Add label descriptions * Add default descriptions to label template
23 lines
427 B
Go
23 lines
427 B
Go
// Copyright 2018 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"
|
|
|
|
"github.com/go-xorm/xorm"
|
|
)
|
|
|
|
func addLabelsDescriptions(x *xorm.Engine) error {
|
|
type Label struct {
|
|
Description string
|
|
}
|
|
|
|
if err := x.Sync2(new(Label)); err != nil {
|
|
return fmt.Errorf("Sync2: %v", err)
|
|
}
|
|
return nil
|
|
}
|