kokjan/vendor/yiisoft/yii2/views/_dropTable.php

16 lines
342 B
PHP
Raw Normal View History

2026-02-25 06:59:34 +00:00
<?php
/**
* Creates a call for the method `yii\db\Migration::dropTable()`.
*
* @var \yii\web\View $this
* @var string $table the name table
* @var array $foreignKeys the foreign keys
2026-02-25 06:59:34 +00:00
*/
echo $this->render('_dropForeignKeys', [
'table' => $table,
'foreignKeys' => $foreignKeys,
]) ?>
$this->dropTable('<?= $table ?>');