fix: executions migration

This commit is contained in:
Torsten Dittmann 2022-03-02 17:31:28 +01:00
parent dd0c47e886
commit 51b2b88dc0

View file

@ -260,6 +260,18 @@ class V12 extends Migration
break;
case 'executions':
try {
/**
* Rename tag to deployment
*/
$this->projectDB->renameAttribute($id, 'tagId', 'deploymentId');
} catch (\Throwable $th) {
Console::warning("'deploymentId' from {$id}: {$th->getMessage()}");
}
break;
case 'teams':
try {
/**