mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
Merge pull request #7760 from appwrite/fix-stat-migration
Fix stats migration
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user