kopia lustrzana https://github.com/magicbug/Cloudlog
20 wiersze
463 B
PHP
20 wiersze
463 B
PHP
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Migration_addfield_to_logbooks_active extends CI_Migration {
|
|
|
|
public function up()
|
|
{
|
|
$fields = array(
|
|
'active_logbook tinyint(1) DEFAULT NULL',
|
|
);
|
|
|
|
$this->dbforge->add_column('logbooks', $fields);
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
echo "not possible";
|
|
}
|
|
} |