Skip to content

Commit fc34e33

Browse files
committed
Update bootstrap.php
1 parent bdfc43c commit fc34e33

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/bootstrap.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,12 @@
110110
'TrustServerCertificate' => 'true'
111111
]);
112112
$runner = new MigrationsRunner(APP_PATH, '', $conn);
113-
$runner->dropMigrationsTable();
113+
try {
114+
$runner->dropMigrationsTable();
115+
} catch (\Exception $exc) {
116+
117+
}
118+
114119
});
115120
fprintf(STDOUT, "Registering shutdown function completed.\n");
116121
fprintf(STDOUT,"---------------------------------\n");

0 commit comments

Comments
 (0)