21 lines
420 B
PHP
21 lines
420 B
PHP
<?php
|
|
namespace console\controllers;
|
|
|
|
use Yii;
|
|
use common\models;
|
|
use yii\console\Controller;
|
|
use common\models\Ticket;
|
|
|
|
class TicketController extends Controller{
|
|
|
|
|
|
public function actionIndex()
|
|
{
|
|
$connection = \Yii::$app->db;
|
|
$command = $connection->createCommand( Ticket::$SQL_UPDATE );
|
|
$result = $command->execute();
|
|
\Yii::info("Tickets updated: " . $result );
|
|
echo "Tickets updated: " . $result ;
|
|
}
|
|
|
|
} |