23 行
		
	
	
	
		
			476 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 行
		
	
	
	
		
			476 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| defined('BASEPATH') or exit('No direct script access allowed');
 | |
| 
 | |
| class Migration_add_waja_bandxuser extends CI_Migration
 | |
| {
 | |
| 	public function up()
 | |
| 	{
 | |
| 		$fields = array(
 | |
| 			'waja TINYINT NOT NULL DEFAULT 1',
 | |
| 		);
 | |
| 
 | |
| 		if (!$this->db->field_exists('waja', 'bandxuser')) {
 | |
| 			$this->dbforge->add_column('bandxuser', $fields);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	public function down()
 | |
| 	{
 | |
| 		if ($this->db->field_exists('waja', 'bandxuser')) {
 | |
| 			$this->dbforge->drop_column('bandxuser', 'waja');
 | |
| 		}
 | |
| 	}
 | |
| }
 |