29 行
		
	
	
	
		
			617 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 行
		
	
	
	
		
			617 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
defined('BASEPATH') OR exit('No direct script access allowed');
 | 
						|
 | 
						|
/*
 | 
						|
 *   This adds an option to enable grid and name lookup
 | 
						|
 *   for WWFF references
 | 
						|
*/
 | 
						|
 | 
						|
class Migration_add_user_wwff_lookup extends CI_Migration {
 | 
						|
 | 
						|
	public function up()
 | 
						|
	{
 | 
						|
		if (!$this->db->field_exists('user_wwff_lookup', 'users')) {
 | 
						|
			$fields = array(
 | 
						|
				'user_wwff_lookup integer DEFAULT 0 AFTER user_sota_lookup',
 | 
						|
			);
 | 
						|
 | 
						|
			$this->dbforge->add_column('users', $fields);
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	public function down()
 | 
						|
	{
 | 
						|
		if ($this->db->field_exists('user_wwff_lookup', 'users')) {
 | 
						|
			$this->dbforge->drop_column('users', 'user_wwff_lookup');
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |