SHOW TABLE STATUS LIKE 'promo_deliveries'
Is there any way other than executing the query with the following
$connection = Yii::$app->getDb();
$command = $connection->createCommand("SHOW TABLE STATUS LIKE 'promo_deliveries'");
$command->queryAll();
using ActiveRecord models in yii2