pull/2455/head
Peter Goodhall 2023-08-30 21:58:39 +01:00
rodzic 437409a0e2
commit d6150d1c17
2 zmienionych plików z 25 dodań i 1 usunięć

Wyświetl plik

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

Wyświetl plik

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