Skip to content

Commit f632dd8

Browse files
committed
Restore only specific buckets
1 parent e4b25a3 commit f632dd8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Application.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,10 @@ public function run(): void
7575
$restore->restoreProjectMetadata();
7676
}
7777
if ($this->config->shouldRestoreBuckets()) {
78-
$restore->restoreBuckets(!$params['useDefaultBackend']);
78+
$restore->restoreBuckets(
79+
!$params['useDefaultBackend'],
80+
$this->config->getTablesToMigrate(),
81+
);
7982
}
8083
if ($this->config->shouldRestoreConfigs()) {
8184
$restore->restoreConfigs(

0 commit comments

Comments
 (0)