prolab-api/vendor/yiisoft/yii2/views/_foreignTables.php

16 lines
305 B
PHP
Raw Normal View History

2025-09-24 06:24:52 +00:00
<?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;