/home/edulekha/crm.edulekha.com/application/migrations/110_version_110.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Migration_Version_110 extends CI_Migration
{
  function __construct()
  {
    parent::__construct();
  }

  public function up()
  {
     $this->db->query("ALTER TABLE `tblleads` ADD `company` VARCHAR(300) NULL AFTER `name`;");
  }
}