mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-10-31 18:47:33 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			406 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			406 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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;
 | 
