db->field_exists('station_wab', 'station_profile')) { // Add WAB Ref to station profile $fields = array( 'station_wab varchar(10) DEFAULT NULL', ); $this->dbforge->add_column('station_profile', $fields); } } public function down() { if ($this->db->field_exists('station_wab', 'station_profile')) { $this->dbforge->drop_column('station_profile', 'station_wab'); } } }