Increase QTH column for logged QSOs

Fixes #3236
这个提交包含在:
Peter Goodhall 2025-01-07 13:27:39 +00:00
父节点 5bbeb0962d
当前提交 14816383a2
共有 2 个文件被更改,包括 32 次插入1 次删除

查看文件

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

查看文件

@ -0,0 +1,31 @@
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Migration_increase_qth_column_size extends CI_Migration
{
public function up()
{
// In the table defined by varialble $this->config->item('table_name') change COL_QTH to be varchar 255
$this->dbforge->modify_column($this->config->item('table_name'), array(
'COL_QTH' => array(
'name' => 'COL_QTH',
'type' => 'VARCHAR',
'constraint' => '255',
'null' => TRUE
)
));
}
public function down()
{
// Change it back to 64
$this->dbforge->modify_column($this->config->item('table_name'), array(
'COL_QTH' => array(
'name' => 'COL_QTH',
'type' => 'VARCHAR',
'constraint' => '64',
'null' => TRUE
)
));
}
}