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

_foreignTables.php 304B

1234567891011121314
  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;