Email col far to short

pull/352/head
Peter Goodhall 2019-09-16 22:15:14 +01:00
rodzic 3e30310d01
commit 33f967d664
1 zmienionych plików z 23 dodań i 0 usunięć

Wyświetl plik

@ -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.";
}
}