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.

15 lines
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;