kopia lustrzana https://github.com/magicbug/Cloudlog
Added migration file to create a logbook_id
rodzic
33f967d664
commit
3449ac627d
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
class Migration_add_column_logbookid extends CI_Migration {
|
||||
|
||||
public function up()
|
||||
{
|
||||
$fields = array(
|
||||
'logbook_id int(11) DEFAULT NULL',
|
||||
);
|
||||
|
||||
$this->dbforge->add_column($this->config->item('table_name'), $fields);
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
echo "Not possible, sorry.";
|
||||
}
|
||||
}
|
Ładowanie…
Reference in New Issue