Add database version to output

This commit is contained in:
slawkens 2024-11-19 15:00:54 +01:00
parent a4eb798a85
commit 4a148e393a

View File

@ -22,7 +22,7 @@ class MigrateCommand extends Command
$io = new SymfonyStyle($input, $output);
require SYSTEM . 'migrate.php';
$io->success('Migrated to latest version');
$io->success('Migrated to latest version (' . DATABASE_VERSION . ')');
return Command::SUCCESS;
}
}