Set LoTW sent status to I (ignore)

This commit is contained in:
phl0
2024-07-12 10:28:48 +02:00
parent ce5a5e15c6
commit d3d31f3bdb

View File

@@ -6,7 +6,7 @@ class Migration_unmark_unsupported_lotw_uploads extends CI_Migration
public function up() {
$this->db->where_in('COL_PROP_MODE', $this->config->item('lotw_unsupported_prop_modes'));
$this->db->update($this->config->item('table_name'), array('COL_LOTW_QSLSDATE' => null, 'COL_LOTW_QSL_SENT' => 'N'));
$this->db->update($this->config->item('table_name'), array('COL_LOTW_QSLSDATE' => null, 'COL_LOTW_QSL_SENT' => 'I'));
}
public function down() {