Skip to content

Commit 4262364

Browse files
authored
Merge pull request #7 from apacheborys/fix-issue-with-autoload
fix issue related to partial load migrations
2 parents ffef9cc + f901d1a commit 4262364

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/BasicTransport/Migration/Migrator.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ class Migrator
77
{
88
public function checkAndExecuteMigrations(array $context, string $transportClass): void
99
{
10+
include_once ('DbPdoTransportMigration.php');
11+
include_once ('MongoDbTransportMigration.php');
12+
1013
$migrations = $this->getAllMigrationsForTransport($context, $transportClass);
1114

1215
foreach ($migrations as $migration) {

0 commit comments

Comments
 (0)