The constant yii\console\Controller::EXIT_CODE_NORMAL has been deprecated with message: since 2.0.13. Use [[ExitCode::OK]] instead.
This class constant has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the constant will be
removed from the class and what other constant to use instead.
Loading history...
40
}
41
42
/**
43
* Delete all data from specific table
44
*
45
* @param $tableName
46
*
47
* @throws \yii\db\Exception
48
*
49
* @return int
50
*/
51
public function actionClearTable($tableName): int
52
{
53
if ($this->confirm(Yii::t('app', 'Are you sure you want to clear this table?'))) {
The constant yii\console\Controller::EXIT_CODE_NORMAL has been deprecated with message: since 2.0.13. Use [[ExitCode::OK]] instead.
This class constant has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the constant will be
removed from the class and what other constant to use instead.
This class constant has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the constant will be removed from the class and what other constant to use instead.