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

18 lines
343 B
PHP
Raw Normal View History

2026-02-25 06:59:34 +00:00
<?php
/**
* @var \yii\web\View $this
* @var string $table
* @var array $foreignKeys
* @var array $fields
*/
2026-02-25 06:59:34 +00:00
echo $this->render('_dropForeignKeys', [
'table' => $table,
'foreignKeys' => $foreignKeys,
]);
foreach ($fields as $field): ?>
$this->dropColumn('<?= $table ?>', '<?= $field['property'] ?>');
<?php endforeach;