Merge pull request #11 from magicbug/master

2.4.11
这个提交包含在:
HB9HIL 2023-10-22 19:19:24 +02:00 提交者 GitHub
当前提交 6e319f2b9b
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23
共有 2 个文件被更改,包括 25 次插入1 次删除

查看文件

@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE;
|
*/
$config['migration_version'] = 146;
$config['migration_version'] = 147;
/*
|--------------------------------------------------------------------------

查看文件

@ -0,0 +1,24 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
* Tag Cloudlog as 2.4.11
*/
class Migration_tag_2_4_11 extends CI_Migration {
public function up()
{
// Tag Cloudlog 2.4.11
$this->db->where('option_name', 'version');
$this->db->update('options', array('option_value' => '2.4.11'));
}
public function down()
{
$this->db->where('option_name', 'version');
$this->db->update('options', array('option_value' => '2.4.10'));
}
}