prolab-api/vendor/yiisoft/yii2/views/_dropTable.php

15 lines
314 B
PHP
Raw Normal View History

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