Email col far to short

这个提交包含在:
Peter Goodhall 2019-09-16 22:15:14 +01:00
父节点 3e30310d01
当前提交 33f967d664

查看文件

@ -0,0 +1,23 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_col_email_tooshort extends CI_Migration {
public function up()
{
$fields = array(
'COL_EMAIL' => array(
'name' => 'COL_EMAIL',
'type' => 'VARCHAR',
'constraint' => '255',
)
);
$this->dbforge->modify_column($this->config->item('table_name'), $fields);
}
public function down()
{
echo "Not possible, sorry.";
}
}