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

pull/1450/head
phl0 2022-04-04 11:38:21 +02:00
rodzic 926742ddbd
commit 73ce098676
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 48EA1E640798CA9A
2 zmienionych plików z 30 dodań i 1 usunięć

Wyświetl plik

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

Wyświetl plik

@ -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');
}
}