Update 072_update_cas9_qsos.php
这个提交包含在:
父节点
f4e99ae4c3
当前提交
1406364b9c
共有 1 个文件被更改,包括 18 次插入 和 0 次删除
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?php
|
||||||
|
defined('BASEPATH') or exit('No direct script access allowed');
|
||||||
|
|
||||||
|
class Migration_update_cas9_qsos extends CI_Migration
|
||||||
|
{
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
$this->db->set('COL_SAT_NAME', 'HO-113');
|
||||||
|
$this->db->set('COL_LOTW_QSL_SENT', 'N');
|
||||||
|
$this->db->where('COL_SAT_NAME', 'CAS-9');
|
||||||
|
$this->db->update($this->config->item('table_name')); // gives UPDATE `mytable` SET `field` = 'field+1' WHERE `id` = 2
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
// Not Possible
|
||||||
|
}
|
||||||
|
}
|
||||||
正在加载…
在新工单中引用