1 2 3 4 5 6 7 8 9 10 11 12 13
<?php /** * Creates a call for the method `yii\db\Migration::dropTable()` */ /* @var $table string the name table */ /* @var $foreignKeys array the foreign keys */ echo $this->render('_dropForeignKeys', [ 'table' => $table, 'foreignKeys' => $foreignKeys, ]) ?> $this->dropTable('<?= $table ?>');