21 行
		
	
	
		
			无行尾
		
	
	
		
			396 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 行
		
	
	
		
			无行尾
		
	
	
		
			396 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
defined('BASEPATH') OR exit('No direct script access allowed');
 | 
						|
 | 
						|
class Migration_add_cert_to_lotw_certs extends CI_Migration {
 | 
						|
 | 
						|
    public function up()
 | 
						|
    {
 | 
						|
        $fields = array(
 | 
						|
            'cert TEXT',  
 | 
						|
        );
 | 
						|
 | 
						|
 | 
						|
        $this->dbforge->add_column('lotw_certs', $fields);
 | 
						|
    }
 | 
						|
 | 
						|
    public function down()
 | 
						|
    {
 | 
						|
        $this->dbforge->drop_column('lotw_certs', 'cert');
 | 
						|
    }
 | 
						|
} |