And migration script
这个提交包含在:
父节点
99a08d0d18
当前提交
02b29b3426
共有 1 个文件被更改,包括 13 次插入 和 0 次删除
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
class Migration_alter_user_options_table extends CI_Migration {
|
||||
|
||||
public function up() {
|
||||
$this->db->query("ALTER TABLE user_options CHANGE COLUMN option_value option_value text DEFAULT NULL;");
|
||||
}
|
||||
|
||||
public function down(){
|
||||
}
|
||||
}
|
||||
正在加载…
在新工单中引用