1
0
Fork 0
mirror of synced 2024-09-30 09:18:14 +13:00

fix: migration for executions

This commit is contained in:
Torsten Dittmann 2022-03-02 17:45:22 +01:00
parent 51b2b88dc0
commit 17f3353a5f

View file

@ -270,6 +270,15 @@ class V12 extends Migration
Console::warning("'deploymentId' from {$id}: {$th->getMessage()}");
}
try {
/**
* Create statusCode
*/
$this->projectDB->createAttribute(collection: $id, id: 'statusCode', type: Database::VAR_INTEGER, size: 0, required: false);
} catch (\Throwable $th) {
Console::warning("'statusCode' from {$id}: {$th->getMessage()}");
}
break;
case 'teams':