20 行
		
	
	
	
		
			497 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			20 行
		
	
	
	
		
			497 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								defined('BASEPATH') OR exit('No direct script access allowed');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class Migration_add_state_to_stationprofile extends CI_Migration {
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        public function up()
							 | 
						||
| 
								 | 
							
								        {
							 | 
						||
| 
								 | 
							
								                $fields = array(
							 | 
						||
| 
								 | 
							
								                        'state varchar(4) DEFAULT NULL',
							 | 
						||
| 
								 | 
							
								                );
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                $this->dbforge->add_column('station_profile', $fields);
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        public function down()
							 | 
						||
| 
								 | 
							
								        {
							 | 
						||
| 
								 | 
							
								                $this->dbforge->drop_column('station_profile', 'state');
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								}
							 |