Cloudlog/application/migrations/202_set_tevel23_to_notsent.php
Peter Goodhall c3c1f1e325 Add migration to set TEVEL2-3 QSL sent status to N
Added migration 202 to update COL_LOTW_QSL_SENT to 'N' for TEVEL2-3 satellite records. Updated migration version in config and added TEVEL2-3 to the satellite name mapping in Lotw controller.
2025-07-30 10:26:16 +01:00

24 行
823 B
PHP

<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Migration_set_tevel23_to_notsent extends CI_Migration
{
public function up()
{
// update column COL_LOTW_QSL_SENT to N if its TEVEL2-3
$this->db->set('COL_LOTW_QSL_SENT', 'N');
$this->db->where('COL_SAT_NAME', 'TEVEL2-3');
$this->db->update($this->config->item('table_name'));
log_message('info', 'Migration: Set COL_LOTW_QSL_SENT to N for TEVEL2-3');
}
public function down()
{
// Set COL_LOTW_QSL_SENT back to N for TEVEL2-3
$this->db->set('COL_LOTW_QSL_SENT', 'N');
$this->db->where('COL_SAT_NAME', 'TEVEL2-3');
$this->db->update($this->config->item('table_name'));
log_message('info', 'Migration: Reverted COL_LOTW_QSL_SENT back to N for TEVEL2-3');
}
}