Skip to content

Commit e0cb916

Browse files
Merge pull request #4 from jonag/patch-1
Fix message when no changes detected
2 parents a4d0be1 + 270f133 commit e0cb916

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/DiffFileCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function execute(InputInterface $input, OutputInterface $output)
5757
$down = $this->buildCodeFromSql($configuration, $fromSchema->getMigrateFromSql($toSchema, $platform));
5858

5959
if (!$up && !$down) {
60-
$output->writeln('No changes detected in your mapping information.', 'ERROR');
60+
$output->writeln('No changes detected in your mapping information.');
6161

6262
return;
6363
}

0 commit comments

Comments
 (0)