mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 08:58:35 +00:00
fix: executions migration
This commit is contained in:
parent
dd0c47e886
commit
51b2b88dc0
1 changed files with 12 additions and 0 deletions
|
|
@ -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 {
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue