mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-01 03:26:36 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			327 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			327 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php foreach ($fields as $field): ?>
 | |
|         $this->addColumn('<?=
 | |
|             $table
 | |
|         ?>', '<?=
 | |
|             $field['property']
 | |
|         ?>', $this-><?=
 | |
|             $field['decorators']
 | |
|         ?>);
 | |
| <?php endforeach;
 | |
| 
 | |
| echo $this->render('_addForeignKeys', [
 | |
|     'table' => $table,
 | |
|     'foreignKeys' => $foreignKeys,
 | |
| ]);
 | 
