Compare commits

..

No commits in common. "03d71727e8d52194e27a9f80c460ef1a8352d34c" and "545e5b39ac2bd538b1e4c439789fea93feda3a89" have entirely different histories.

View File

@ -96,7 +96,7 @@ class MigrateDatabaseCommand extends Command
while ($file = readdir($dir)) {
$filePath = $path . '/' . $file;
if (!is_file($filePath) || $file == '.gitkeep' || in_array(pathinfo($file, PATHINFO_FILENAME), $done)) {
if (!is_file($filePath) || pathinfo($file, PATHINFO_FILENAME) == '.gitkeep' || in_array(pathinfo($file, PATHINFO_FILENAME), $done)) {
continue;
}