mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	**Backport:** https://codeberg.org/forgejo/forgejo/pulls/7337 - Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7354 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.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 //nolint
 | |
| 
 | |
| 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()
 | |
| }
 |