_dropTable.php 317 B

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