Add 2.8.16 migration and bump version

Updates the migration target to 273 and adds a new migration to tag Cloudlog as 2.8.16. The migration sets `options.version` to `2.8.16` and resets `user_options` version dialog confirmation so users see the version info dialog; the down migration restores the version value to `2.8.15`.
This commit is contained in:
Peter Goodhall 2026-07-16 13:28:12 +01:00
parent ffa9d5017e
commit 444207dc38
2 changed files with 31 additions and 1 deletions

View file

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

View file

@ -0,0 +1,30 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
* Tag Cloudlog as 2.8.16 Migration
*/
class Migration_tag_2_8_16 extends CI_Migration {
public function up()
{
// Tag Cloudlog 2.8.16
$this->db->where('option_name', 'version');
$this->db->update('options', array('option_value' => '2.8.16'));
// Trigger Version Info Dialog
$this->db->where('option_type', 'version_dialog');
$this->db->where('option_name', 'confirmed');
$this->db->update('user_options', array('option_value' => 'false'));
}
public function down()
{
$this->db->where('option_name', 'version');
$this->db->update('options', array('option_value' => '2.8.15'));
}
}