Add user config option to select whether to show qrz.com images

This commit is contained in:
phl0
2022-04-04 11:38:21 +02:00
parent 926742ddbd
commit 73ce098676
2 changed files with 30 additions and 1 deletions

View File

@@ -21,7 +21,7 @@ $config['migration_enabled'] = TRUE;
| be upgraded / downgraded to.
|
*/
$config['migration_version'] = 86;
$config['migration_version'] = 87;
/*
|--------------------------------------------------------------------------

View File

@@ -0,0 +1,29 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/**
* Class Migration_create_eqsl_images_table
*
* Creates a boolean column with option to allow for activating showing of
* qrz.com profile picture in the log QSO section
*
*/
class Migration_add_qrz_image_option extends CI_Migration {
public function up()
{
if (!$this->db->field_exists('show_qrz_image', 'users')) {
$fields = array(
'show_qrz_image BOOLEAN DEFAULT FALSE',
);
$this->dbforge->add_column('users', $fields);
}
}
public function down()
{
$this->dbforge->drop_column('users', 'show_qrz_image');
}
}