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.
pull/3299/head
Peter Goodhall 2025-07-30 10:26:16 +01:00
rodzic f951018ed1
commit c3c1f1e325
3 zmienionych plików z 26 dodań i 1 usunięć

Wyświetl plik

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

Wyświetl plik

@ -995,6 +995,7 @@ class Lotw extends CI_Controller {
"INSPR7" => "INSPIRE-SAT 7",
"SONATE" => "SONATE-2",
'AO-123' => "ASRTU-1",
'TEV2-3' => "TEVEL2-3",
);
return array_search(strtoupper($satname),$arr,true);

Wyświetl plik

@ -0,0 +1,24 @@
<?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');
}
}