Skip to content

Commit 9f0f00b

Browse files
committed
Fixed notification message
1 parent fd8560e commit 9f0f00b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MigrationsGenerator/MigrateGenerateCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ private function generateMigrationFiles(array $tables): void
240240
if (app(MigrationsGeneratorSetting::class)->isSquash()) {
241241
$migrationFilepath = $this->generator->squashMigrations();
242242

243-
$this->info('All migrations squashed.');
243+
$this->info("\nAll migrations squashed.");
244244

245245
if ($this->shouldLog) {
246246
$this->logMigration($migrationFilepath);
@@ -318,7 +318,7 @@ protected function writeMigration(string $table, callable $writeToTemp, callable
318318
{
319319
if (app(MigrationsGeneratorSetting::class)->isSquash()) {
320320
$writeToTemp();
321-
$this->info("Prepared: $table foreign keys");
321+
$this->info("Prepared: $table");
322322
} else {
323323
$migrationFilePath = $writeToMigrationFile();
324324
$this->info("Created: $migrationFilePath");

0 commit comments

Comments
 (0)