[Sats] Change CAS-9 QSOs to HO-113 and set LoTW Sent to N

pull/1350/head
Peter Goodhall 2022-01-03 18:17:04 +00:00
rodzic a0645996a2
commit 59e4ea0316
2 zmienionych plików z 19 dodań i 1 usunięć

Wyświetl plik

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

Wyświetl plik

@ -0,0 +1,18 @@
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Migration_update_cas9_qsos extends CI_Migration
{
public function up()
{
$this->db->set('COL_SAT_NAME', 'HO-113');
$this->db->set('COL_LOTW_QSL_SENT', 'N');
$this->db->where('COL_SAT_NAME', 'CAS-9');
$this->db->update($this->config->item('table_name')); // gives UPDATE `mytable` SET `field` = 'field+1' WHERE `id` = 2
}
public function down()
{
// Not Possible
}
}