19 行
432 B
PHP
19 行
432 B
PHP
|
|
<?php
|
||
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
||
|
|
|
||
|
|
class Migration_rename_reupload_ao123 extends CI_Migration
|
||
|
|
{
|
||
|
|
public function up()
|
||
|
|
{
|
||
|
|
$this->db->set('COL_SAT_NAME', 'AO-123');
|
||
|
|
$this->db->set('COL_LOTW_QSL_SENT', 'N');
|
||
|
|
$this->db->where('COL_SAT_NAME', 'ASRTU-1');
|
||
|
|
$this->db->update($this->config->item('table_name'));
|
||
|
|
}
|
||
|
|
|
||
|
|
public function down()
|
||
|
|
{
|
||
|
|
// Not Possible
|
||
|
|
}
|
||
|
|
}
|