Skip to content

Commit 183ff91

Browse files
authored
fix: Correct display table name in dropDatabase in console
1 parent c4c348a commit 183ff91

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/DbAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ private function dropDatabase($input, $output){
9393
$name = $input->getArgument('name');
9494

9595
$helper = $this->getHelper('question');
96-
$question = new ConfirmationQuestion('<question>Are you sure you want to delete the users database?(Type yes to continue):</question>', false);
96+
$question = new ConfirmationQuestion('<question>Are you sure you want to delete the "<error>'.$name.'</error>" database?(Type yes to continue):</question>', false);
9797
if (!$helper->ask($input, $output, $question)) {
9898
return Command::SUCCESS;
9999
}

0 commit comments

Comments
 (0)