mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 08:28:42 +00:00
Fix stats migration
This commit is contained in:
parent
b234618930
commit
cfed14a378
1 changed files with 9 additions and 0 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue