Files
23cm/vendor/yiisoft/yii2/views/_foreignTables.php
2026-01-25 18:18:09 +08:00

16 lines
305 B
PHP

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