From 6109d52a83e0145d2d1fd1cbc1aa95b909455353 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 4 Mar 2024 09:00:53 -0600 Subject: [PATCH] Update ApiInstallCommand.php --- src/Illuminate/Foundation/Console/ApiInstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Foundation/Console/ApiInstallCommand.php b/src/Illuminate/Foundation/Console/ApiInstallCommand.php index 8a74f506e8e0..d585c1b05efb 100644 --- a/src/Illuminate/Foundation/Console/ApiInstallCommand.php +++ b/src/Illuminate/Foundation/Console/ApiInstallCommand.php @@ -49,7 +49,7 @@ public function handle() $this->uncommentApiRoutesFile(); } - if ($this->confirm('One new migration has been published. Would you like to run the pending database migrations?', false)) { + if ($this->confirm('One new database migration has been published. Would you like to run all pending database migrations?', false)) { $this->call('migrate'); }