Add migration for sig and sig_info fields
这个提交包含在:
父节点
8412095d3c
当前提交
f41af318b9
共有 1 个文件被更改,包括 22 次插入 和 0 次删除
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||||
|
|
||||||
|
class Migration_add_signature_to_station_profile extends CI_Migration {
|
||||||
|
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
$fields = array(
|
||||||
|
'station_sig varchar(50) DEFAULT NULL',
|
||||||
|
'station_sig_info varchar(50) DEFAULT NULL',
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->dbforge->add_column('station_profile', $fields);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
$this->dbforge->drop_column('station_profile', 'station_sig');
|
||||||
|
$this->dbforge->drop_column('station_profile', 'station_sig_info');
|
||||||
|
}
|
||||||
|
}
|
||||||
正在加载…
在新工单中引用