| 
									
										
										
										
											2023-12-15 19:12:23 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | defined('BASEPATH') OR exit('No direct script access allowed'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Class Migration_award_submitted_typo | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Fix typo in COL_AWARD_SUMMITED column | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Migration_award_submitted_typo extends CI_Migration { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         public function up() | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |                 $this->db->query( | 
					
						
							|  |  |  |                         'ALTER TABLE ' . | 
					
						
							|  |  |  |                         $this->db->escape_identifiers($this->config->item('table_name')) . | 
					
						
							| 
									
										
										
										
											2023-12-15 23:21:11 +08:00
										 |  |  |                         ' CHANGE COL_AWARD_SUMMITED COL_AWARD_SUBMITTED VARCHAR(255)' | 
					
						
							| 
									
										
										
										
											2023-12-15 19:12:23 +08:00
										 |  |  |                 ); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         public function down() | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |                 $this->db->query( | 
					
						
							|  |  |  |                         'ALTER TABLE ' . | 
					
						
							|  |  |  |                         $this->db->escape_identifiers($this->config->item('table_name')) . | 
					
						
							| 
									
										
										
										
											2023-12-15 23:21:11 +08:00
										 |  |  |                         ' CHANGE COL_AWARD_SUBMITTED COL_AWARD_SUMMITED VARCHAR(255)' | 
					
						
							| 
									
										
										
										
											2023-12-15 19:12:23 +08:00
										 |  |  |                 ); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | } |