mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-23 10:08:38 +00:00
25 lines
407 B
PHP
25 lines
407 B
PHP
|
<?php defined('BASEPATH') OR exit('No direct script access allowed');
|
||
|
|
||
|
class Migration_add_dxcc_delete extends CI_Migration {
|
||
|
|
||
|
public function up()
|
||
|
{
|
||
|
|
||
|
$fields = array(
|
||
|
'deleted' => array(
|
||
|
'type' => 'VARCHAR',
|
||
|
'constraint' => '100',
|
||
|
)
|
||
|
);
|
||
|
|
||
|
$this->dbforge->add_column('dxcc', $fields);
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public function down()
|
||
|
{
|
||
|
$this->dbforge->drop_column('dxcc', 'deleted');
|
||
|
}
|
||
|
}
|
||
|
?>
|