diff --git a/src/Appwrite/Migration/Version/V20.php b/src/Appwrite/Migration/Version/V20.php index 4f547b923..ef55de0b3 100644 --- a/src/Appwrite/Migration/Version/V20.php +++ b/src/Appwrite/Migration/Version/V20.php @@ -180,6 +180,15 @@ class V20 extends Migration Console::warning("'type' from {$id}: {$th->getMessage()}"); } + try { + /** + * Ensure 'time' attribute is not required + */ + $this->projectDB->updateAttribute($id, 'time', required: false); + } catch (Throwable $th) { + Console::warning("'time' from {$id}: {$th->getMessage()}"); + } + try { $this->projectDB->purgeCachedCollection($id); } catch (Throwable $th) {