選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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