portal.mkgtu.ru/common/db/views/_dropForeignKeys.php

15 lines
406 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php foreach ($foreignKeys as $column => $fkData): ?>
// drops foreign key for table `<?= $fkData['relatedTable'] ?>`
$this->dropForeignKey(
'<?= $fkData['fk'] ?>',
'<?= $table ?>'
);
// drops index for column `<?= $column ?>`
$this->dropIndex(
'<?= $fkData['idx'] ?>',
'<?= $table ?>'
);
<?php endforeach;