move to check

This commit is contained in:
Chirag Aggarwal
2025-10-28 15:07:24 +05:30
parent 3f710ddc70
commit 7b1e163c77
+8 -10
View File
@@ -132,6 +132,14 @@ class V23 extends Migration
}
$this->dbForProject->purgeCachedCollection($id);
break;
case 'buckets':
try {
$this->createAttributeFromCollection($this->dbForProject, $id, 'transformations');
} catch (Throwable $th) {
Console::warning("'transformations' from {$id}: {$th->getMessage()}");
}
$this->dbForProject->purgeCachedCollection($id);
break;
default:
break;
}
@@ -146,16 +154,6 @@ class V23 extends Migration
} catch (Throwable $th) {
Console::warning("(platform) 'transformations' from 'buckets': {$th->getMessage()}");
}
try {
$this->createAttributeFromCollection(
$this->dbForProject,
'buckets',
'transformations',
);
} catch (Throwable $th) {
Console::warning("'transformations' from 'buckets': {$th->getMessage()}");
}
}
/**