Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

14 lines
316B

  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 ?>');