1
0
Fork 0
mirror of synced 2024-10-03 02:37:40 +13:00

cache collection attr migration

This commit is contained in:
shimon 2024-02-12 17:22:33 +02:00
parent 6fc2969e5f
commit 8256c8b294

View file

@ -129,6 +129,24 @@ class V20 extends Migration
$this->createCollection('targets');
$this->createCollection('challenges');
break;
case 'cache':
// Create resourceType attribute
try {
$this->createAttributeFromCollection($this->projectDB, $id, 'resourceType');
$this->projectDB->purgeCachedCollection($id);
} catch (Throwable $th) {
Console::warning("'resourceType' from {$id}: {$th->getMessage()}");
}
// Create mimeType attribute
try {
$this->createAttributeFromCollection($this->projectDB, $id, 'mimeType');
$this->projectDB->purgeCachedCollection($id);
} catch (Throwable $th) {
Console::warning("'mimeType' from {$id}: {$th->getMessage()}");
}
break;
case 'stats':
try {