Files
yii2/framework/views/_foreignTables.php
2025-06-03 19:57:08 +03: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;