1
0
Fork 0
mirror of synced 2024-05-17 11:12:41 +12:00

Merge branch '1.5.x' of https://github.com/appwrite/appwrite into limbo-attribute

This commit is contained in:
fogelito 2024-04-19 18:05:36 +03:00
commit 12b55d913b

View file

@ -294,6 +294,13 @@ class V20 extends Migration
Console::warning("'oAuthProviders' from {$id}: {$th->getMessage()}");
}
// Create apis attribute
try {
$this->createAttributeFromCollection($this->projectDB, $id, 'apis');
} catch (Throwable $th) {
Console::warning("'apis' from {$id}: {$th->getMessage()}");
}
try {
$this->projectDB->purgeCachedCollection($id);
} catch (Throwable $th) {