mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-10-31 10:39:59 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			235 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			235 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| echo  $this->render('_dropForeignKeys', [
 | |
|     'table' => $table,
 | |
|     'foreignKeys' => $foreignKeys,
 | |
| ]);
 | |
| 
 | |
| foreach ($fields as $field): ?>
 | |
|         $this->dropColumn('<?= $table ?>', '<?= $field['property'] ?>');
 | |
| <?php endforeach;
 | 
