Hi All,
Iam trying to add a new column using the following code, but it is not working. Thanks in advance...
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_Add_age_patient extends CI_Migration {
public function up(){
$this->dbforge->add_column('patientmedicalprofile', array(
'age' => array(
'type' => 'INT',
'constraint' => 11,
'default' => '',
'after' => 'birthday',
'null' => TRUE,
)
));
}
public function down(){
}
}
Iam trying to add a new column using the following code, but it is not working. Thanks in advance...
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_Add_age_patient extends CI_Migration {
public function up(){
$this->dbforge->add_column('patientmedicalprofile', array(
'age' => array(
'type' => 'INT',
'constraint' => 11,
'default' => '',
'after' => 'birthday',
'null' => TRUE,
)
));
}
public function down(){
}
}