From d3d31f3bdb41df357bb2644831a7a7ff157be94b Mon Sep 17 00:00:00 2001 From: phl0 Date: Fri, 12 Jul 2024 10:28:48 +0200 Subject: [PATCH] Set LoTW sent status to I (ignore) --- application/migrations/209_unmark_unsupported_lotw_uploads.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/migrations/209_unmark_unsupported_lotw_uploads.php b/application/migrations/209_unmark_unsupported_lotw_uploads.php index fdc416539..ca702492a 100644 --- a/application/migrations/209_unmark_unsupported_lotw_uploads.php +++ b/application/migrations/209_unmark_unsupported_lotw_uploads.php @@ -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() {