mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Email col far to short
This commit is contained in:
23
application/migrations/023_col_email_tooshort.php
Normal file
23
application/migrations/023_col_email_tooshort.php
Normal file
@@ -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.";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user