[Migration] 061 adds language to the options table default to english

pull/865/head
Peter Goodhall 2021-01-31 13:24:25 +00:00
rodzic 0d2dab1afe
commit 67ba28d145
2 zmienionych plików z 26 dodań i 1 usunięć

Wyświetl plik

@ -21,7 +21,7 @@ $config['migration_enabled'] = TRUE;
| be upgraded / downgraded to.
|
*/
$config['migration_version'] = 60;
$config['migration_version'] = 61;
/*
|--------------------------------------------------------------------------

Wyświetl plik

@ -0,0 +1,25 @@
<?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_lang_to_options extends CI_Migration {
public function up()
{
$data = array(
array('option_name' => "language", 'option_value' => "english", 'autoload' => "yes"),
);
$this->db->insert_batch('options', $data);
}
public function down()
{
// No option to down
}
}