mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-22 17:52:16 +00:00
21 lines
440 B
PHP
21 lines
440 B
PHP
<?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(
|
|
'qrzrealtime bool DEFAULT FALSE',
|
|
);
|
|
|
|
$this->dbforge->add_column('station_profile', $fields);
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
$this->dbforge->drop_column('station_profile', 'qrzrealtime');
|
|
}
|
|
}
|