mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
|
// Copyright 2021 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"
|
||
|
|
||
|
"code.gitea.io/gitea/modules/setting"
|
||
|
|
||
|
"xorm.io/xorm"
|
||
|
)
|
||
|
|
||
|
func renameTaskErrorsToMessage(x *xorm.Engine) error {
|
||
|
type Task struct {
|
||
|
Errors string `xorm:"TEXT"` // if task failed, saved the error reason
|
||
|
Type int
|
||
|
Status int `xorm:"index"`
|
||
|
}
|
||
|
|
||
|
sess := x.NewSession()
|
||
|
defer sess.Close()
|
||
|
if err := sess.Begin(); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if err := sess.Sync2(new(Task)); err != nil {
|
||
|
return fmt.Errorf("error on Sync2: %v", err)
|
||
|
}
|
||
|
|
||
|
switch {
|
||
|
case setting.Database.UseMySQL:
|
||
|
if _, err := sess.Exec("ALTER TABLE `task` CHANGE errors message text"); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
case setting.Database.UseMSSQL:
|
||
|
if _, err := sess.Exec("sp_rename 'task.errors', 'message', 'COLUMN'"); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
default:
|
||
|
if _, err := sess.Exec("ALTER TABLE `task` RENAME COLUMN errors TO message"); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
return sess.Commit()
|
||
|
}
|