2020-11-18 10:50:15 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
|
|
|
class Migration_add_qrz_upload_realtime_option extends CI_Migration {
|
|
|
|
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
$fields = array(
|
2020-11-18 19:53:58 +00:00
|
|
|
'qrzrealtime bool DEFAULT FALSE',
|
2020-11-18 10:50:15 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->dbforge->add_column('station_profile', $fields);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
$this->dbforge->drop_column('station_profile', 'qrzrealtime');
|
|
|
|
}
|
2020-11-18 19:53:58 +00:00
|
|
|
}
|