2019-09-23 04:23:09 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
|
|
|
|
|
class Migration_addfield_to_logbooks_default extends CI_Migration {
|
|
|
|
|
|
|
|
|
|
public function up()
|
|
|
|
|
{
|
|
|
|
|
$fields = array(
|
|
|
|
|
'default_logbook tinyint(1) DEFAULT NULL',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->dbforge->add_column('logbooks', $fields);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function down()
|
|
|
|
|
{
|
2019-09-23 04:51:55 +08:00
|
|
|
echo "not possible";
|
2019-09-23 04:23:09 +08:00
|
|
|
}
|
|
|
|
|
}
|