Merge pull request #1827 from phl0/addM17AndFreeDV

这个提交包含在:
Peter Goodhall 2022-12-07 10:51:43 +00:00 提交者 GitHub
当前提交 fb77437f4d
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23
共有 2 个文件被更改,包括 50 次插入1 次删除

查看文件

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

查看文件

@ -0,0 +1,49 @@
<?php
defined('BASEPATH') or exit('No direct script access allowed');
/**
* Class Migration_add_m17_and_freedv
*
* Add M17 and FREEDV sub modes
* See http://adif.org.uk/314/ADIF_314_annotated.htm
*/
class Migration_add_m17_and_freedv extends CI_Migration
{
public function up()
{
// insert new FREEDV
$query = $this->db->get_where('adif_modes', array('submode' => 'FREEDV'));
if ($query->num_rows() == 0) {
$data = array(
array('mode' => "DIGITALVOICE", 'submode' => "FREEDV", 'qrgmode' => "DATA", 'active' => 1),
);
$this->db->insert_batch('adif_modes', $data);
}
// insert new M17
$query = $this->db->get_where('adif_modes', array('submode' => 'M17'));
if ($query->num_rows() == 0) {
$data = array(
array('mode' => "DIGITALVOICE", 'submode' => "M17", 'qrgmode' => "DATA", 'active' => 1),
);
$this->db->insert_batch('adif_modes', $data);
}
}
public function down()
{
$query = $this->db->get_where('adif_modes', array('submode' => 'M17'));
if ($query->num_rows() > 0) {
$this->db->where('mode', 'DIGITALVOICE');
$this->db->where('submode', 'M17');
$this->db->delete('adif_modes');
}
$query = $this->db->get_where('adif_modes', array('submode' => 'FREEDV'));
if ($query->num_rows() > 0) {
$this->db->where('mode', 'DIGITALVOICE');
$this->db->where('submode', 'FREEDV');
$this->db->delete('adif_modes');
}
}
}