28 行
		
	
	
		
			无行尾
		
	
	
		
			771 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 行
		
	
	
		
			无行尾
		
	
	
		
			771 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| defined('BASEPATH') OR exit('No direct script access allowed');
 | |
| 
 | |
| /*
 | |
| *   This migration creates a table called options which will hold global options needed within cloudlog
 | |
| *   removing the need for lots of configuration files.
 | |
| */
 | |
| 
 | |
| class Migration_add_version_two_trigger_to_options extends CI_Migration {
 | |
| 
 | |
|     public function up()
 | |
|     {
 | |
|         $data = array(
 | |
|             array('option_name' => "version2_trigger", 'option_value' => "false", 'autoload' => "yes"),
 | |
|         );
 | |
| 
 | |
|         $query = $this->db->select('option_name')->where('option_name', 'version2_trigger')->get('options');
 | |
|         if($query->num_rows() == 0) {
 | |
|             $this->db->insert_batch('options', $data);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public function down()
 | |
|     {
 | |
|         // No option to down
 | |
|     }
 | |
| } |