2026-02-25 06:59:34 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates a call for the method `yii\db\Migration::createTable()`.
|
2026-02-27 00:03:00 +00:00
|
|
|
*
|
|
|
|
|
* @var array $foreignKeys the foreign keys
|
2026-02-25 06:59:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!empty($foreignKeys)):?>
|
|
|
|
|
* Has foreign keys to the tables:
|
|
|
|
|
*
|
|
|
|
|
<?php foreach ($foreignKeys as $fkData): ?>
|
|
|
|
|
* - `<?= $fkData['relatedTable'] ?>`
|
|
|
|
|
<?php endforeach;
|
|
|
|
|
endif;
|