diff --git a/src/Appwrite/Migration/Version/V20.php b/src/Appwrite/Migration/Version/V20.php index 4c17290f78..730a9e701f 100644 --- a/src/Appwrite/Migration/Version/V20.php +++ b/src/Appwrite/Migration/Version/V20.php @@ -127,7 +127,11 @@ class V20 extends Migration } } - $this->projectDB->updateAttribute($id, $attribute['$id'], $attribute['type']); + try { + $this->projectDB->updateAttribute($id, $attribute['$id'], $attribute['type']); + } catch (Throwable $th) { + Console::warning("'{$attribute['$id']}' from {$id}: {$th->getMessage()}"); + } } }