mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-06 19:26:47 +02:00
Some checks failed
/ release (push) Waiting to run
testing-integration / test-unit (push) Waiting to run
testing-integration / test-sqlite (push) Waiting to run
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-e2e (push) Blocked by required conditions
testing / test-remote-cacher (redis) (push) Blocked by required conditions
testing / test-remote-cacher (valkey) (push) Blocked by required conditions
testing / test-remote-cacher (garnet) (push) Blocked by required conditions
testing / test-remote-cacher (redict) (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
testing / security-check (push) Blocked by required conditions
Integration tests for the release process / release-simulation (push) Has been cancelled
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8422 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org> Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
66 lines
1.4 KiB
Go
66 lines
1.4 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_15
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"forgejo.org/models/migrations/base"
|
|
"forgejo.org/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"`
|
|
}
|
|
|
|
// This migration maybe rerun so that we should check if it has been run
|
|
messageExist, err := x.Dialect().IsColumnExist(x.DB(), context.Background(), "task", "message")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if messageExist {
|
|
errorsExist, err := x.Dialect().IsColumnExist(x.DB(), context.Background(), "task", "errors")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if !errorsExist {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
sess := x.NewSession()
|
|
defer sess.Close()
|
|
if err := sess.Begin(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := sess.Sync(new(Task)); err != nil {
|
|
return fmt.Errorf("error on Sync: %w", err)
|
|
}
|
|
|
|
if messageExist {
|
|
// if both errors and message exist, drop message at first
|
|
if err := base.DropTableColumns(sess, "task", "message"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if setting.Database.Type.IsMySQL() {
|
|
if _, err := sess.Exec("ALTER TABLE `task` CHANGE errors message text"); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
if _, err := sess.Exec("ALTER TABLE `task` RENAME COLUMN errors TO message"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return sess.Commit()
|
|
}
|