mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
closes #4469
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6958 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
c269f5c383
commit
d06dd6c713
1 changed files with 2 additions and 2 deletions
|
@ -272,7 +272,7 @@ class SchemaShell extends Shell {
|
|||
exit();
|
||||
}
|
||||
|
||||
$this->out("\n" . __('The following tables will drop.', true));
|
||||
$this->out("\n" . __('The following tables will be dropped.', true));
|
||||
$this->out(array_keys($drop));
|
||||
|
||||
if ('y' == $this->in(__('Are you sure you want to drop the tables?', true), array('y', 'n'), 'n')) {
|
||||
|
@ -280,7 +280,7 @@ class SchemaShell extends Shell {
|
|||
$this->__run($drop, 'drop');
|
||||
}
|
||||
|
||||
$this->out("\n" . __('The following tables will create.', true));
|
||||
$this->out("\n" . __('The following tables will be created.', true));
|
||||
$this->out(array_keys($create));
|
||||
|
||||
if ('y' == $this->in(__('Are you sure you want to create the tables?', true), array('y', 'n'), 'y')) {
|
||||
|
|
Loading…
Add table
Reference in a new issue