Cloudlog/application/migrations/046_add_last_upload_to_lotw...

21 wiersze
434 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_add_last_upload_to_lotw_certs extends CI_Migration {
public function up()
{
$fields = array(
'last_upload DATETIME DEFAULT NULL',
);
$this->dbforge->add_column('lotw_certs', $fields);
}
public function down()
{
$this->dbforge->drop_column('lotw_certs', 'last_upload');
}
}