18 行
		
	
	
	
		
			388 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			18 行
		
	
	
	
		
			388 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								defined('BASEPATH') or exit('No direct script access allowed');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class Migration_reset_lotw_upload_for_ledsat extends CI_Migration
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
									public function up()
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
								        $this->db->set('COL_LOTW_QSL_SENT', 'N');
							 | 
						||
| 
								 | 
							
								        $this->db->where('COL_SAT_NAME', 'LEDSAT');
							 | 
						||
| 
								 | 
							
								        $this->db->update($this->config->item('table_name'));
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									public function down()
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
								        // Not Possible
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								}
							 |