db->field_exists('hrdlog_username', 'station_profile')) { $fields = array( 'hrdlog_username VARCHAR(20) DEFAULT NULL AFTER hrdlog_code', ); $this->dbforge->add_column('station_profile', $fields); } } public function down() { if ($this->db->field_exists('hrdlog_username', 'station_profile')) { $this->dbforge->drop_column('station_profile', 'hrdlog_username'); } } }