This will be for global variables, anything that needs to stick for every user, default theme, dates etc etc etc
		
			
				
	
	
		
			25 行
		
	
	
		
			无行尾
		
	
	
		
			602 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 行
		
	
	
		
			无行尾
		
	
	
		
			602 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_default_theme_to_options_table extends CI_Migration {
 | |
| 
 | |
|     public function up()
 | |
|     {
 | |
|         $data = array(
 | |
|             array('option_name' => "theme", 'option_value' => "default", 'autoload' => "yes")
 | |
|          );
 | |
| 
 | |
|          $this->db->insert_batch('options', $data);
 | |
|     }
 | |
| 
 | |
|     public function down()
 | |
|     {
 | |
|         // No option to down
 | |
|     }
 | |
| } |