您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
304B

  1. <?php
  2. /**
  3. * Creates a call for the method `yii\db\Migration::createTable()`
  4. */
  5. /* @var $foreignKeys array the foreign keys */
  6. if (!empty($foreignKeys)):?>
  7. * Has foreign keys to the tables:
  8. *
  9. <?php foreach ($foreignKeys as $fkData): ?>
  10. * - `<?= $fkData['relatedTable'] ?>`
  11. <?php endforeach;
  12. endif;