load->library('migration'); } public function version($id = NULL) { if ($this->migration->version($id) === FALSE) { show_error($this->migration->error_string()); } else { echo "Database moved to: ".$id; } } public function latest() { if ($this->migration->latest() === FALSE) { show_error($this->migration->error_string()); } else { echo "Database updated or update not needed."; } } } ?>