Merge pull request #2837 from onovy/award_summited

Fix typo in COL_AWARD_SUMMITED column
This commit is contained in:
Peter Goodhall 2023-12-15 14:05:49 +00:00 committed by GitHub
commit 7188705a3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 33 additions and 3 deletions

View File

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

View File

@ -12,7 +12,7 @@ class AdifHelper {
'ANT_PATH',
'ARRL_SECT',
'AWARD_GRANTED',
'AWARD_SUMMITED', // Typo in DB!
'AWARD_SUBMITTED',
'BAND',
'BAND_RX',
'BIOGRAPHY',

View File

@ -0,0 +1,30 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/**
* Class Migration_award_submitted_typo
*
* Fix typo in COL_AWARD_SUMMITED column
*/
class Migration_award_submitted_typo extends CI_Migration {
public function up()
{
$this->db->query(
'ALTER TABLE ' .
$this->db->escape_identifiers($this->config->item('table_name')) .
' RENAME COLUMN COL_AWARD_SUMMITED TO COL_AWARD_SUBMITTED'
);
}
public function down()
{
$this->db->query(
'ALTER TABLE ' .
$this->db->escape_identifiers($this->config->item('table_name')) .
' RENAME COLUMN COL_AWARD_SUBMITTED TO COL_AWARD_SUMMITED'
);
}
}

View File

@ -3472,7 +3472,7 @@ function lotw_last_qsl_date($user_id) {
'COL_ANT_PATH' => $input_ant_path,
'COL_ARRL_SECT' => (!empty($record['arrl_sect'])) ? $record['arrl_sect'] : '',
'COL_AWARD_GRANTED' => (!empty($record['award_granted'])) ? $record['award_granted'] : '',
'COL_AWARD_SUMMITED' => (!empty($record['award_submitted'])) ? $record['award_submitted'] : '',
'COL_AWARD_SUBMITTED' => (!empty($record['award_submitted'])) ? $record['award_submitted'] : '',
'COL_BAND' => $band,
'COL_BAND_RX' => $band_rx,
'COL_BIOGRAPHY' => (!empty($record['biography'])) ? $record['biography'] : '',