Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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