| 
									
										
										
										
											2021-08-23 22:39:30 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | defined('BASEPATH') OR exit('No direct script access allowed'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Migration_add_userid_to_station_profiles extends CI_Migration { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function up() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $fields = array( | 
					
						
							|  |  |  |             'user_id BIGINT(20) DEFAULT NULL', | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 22:07:38 +08:00
										 |  |  |         if (!$this->db->field_exists('user_id', 'station_profile')) { | 
					
						
							|  |  |  |             $this->dbforge->add_column('station_profile', $fields); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-08-23 22:39:30 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function down() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->dbforge->drop_column('station_profile', 'user_id'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |