Files
yii2/framework/views/_foreignTables.php
Angel Guevara b923adf75c Enh: Support for useTablePrefix parameter in migrate command
Fixes #11166: migrate command new option `useTablePrefix`
2016-04-06 13:37:37 +03:00

15 lines
304 B
PHP

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