From 4a148e393af7f76a07e73f6c2d5b949c23eb4dae Mon Sep 17 00:00:00 2001 From: slawkens Date: Tue, 19 Nov 2024 15:00:54 +0100 Subject: [PATCH] Add database version to output --- system/src/Commands/MigrateCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Commands/MigrateCommand.php b/system/src/Commands/MigrateCommand.php index c5bf010c..a8a21016 100644 --- a/system/src/Commands/MigrateCommand.php +++ b/system/src/Commands/MigrateCommand.php @@ -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; } }