Cloudlog/application/migrations/047_add_cert_to_lotw_certs.php

21 wiersze
396 B
PHP

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