Cloudlog/application/migrations/044_add_key_to_lotw_certs.php

25 行
560 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_add_key_to_lotw_certs extends CI_Migration {
public function up()
{
$fields = array(
2024-01-20 20:57:26 +08:00
'cert_key TEXT',
);
2024-01-20 20:57:26 +08:00
if (!$this->db->field_exists('cert_key', 'lotw_certs')) {
$this->dbforge->add_column('lotw_certs', $fields);
}
}
public function down()
{
2024-01-20 20:57:26 +08:00
if ($this->db->field_exists('cert_key', 'lotw_certs')) {
$this->dbforge->drop_column('lotw_certs', 'cert_key');
}
}
}