如何更新cakephp 2.8.0中的字段

I am new in cakephp(working in 2.8.0) and i want to edit field(tag_name), I have two tables

1) meta_description (id,tag_name,tag_image)
2) poll_meta(tag_id,poll_id)

I want if tag_name(which i sending) already exist then new entry should not save otherwise new entry should be save in meta_description and update tag_id with poll_id(which i sending from view) Right now i am updating category and content but how can i update tag name also ?.Here is my code

 public function edit($id=null){
    //echo "here";exit;
    $this->layout='admin';
    if($this->Session->check('Auth.User')){
        if($this->Auth->User('role') == 'admin'){
            if (!$id) {
            $this->Session->setFlash('Please provide a user id');
            $this->redirect(array('action'=>'index'));
            }
            $category = $this->Poll->findById($id);

             $select = $this->PollCategory->find('first', array('fields' => array('category_id'), 'conditions' => array('poll_id' => $id)));
                $pc = $select['PollCategory']['category_id'];

        if ($this->request->is('post') || $this->request->is('put')) {
            $cat = $this->data['Poll']['category_id'];
            $this->Poll->id = $id;
            if ($this->Poll->save($this->request->data)) {

                $this->PollCategory->updateAll(array('category_id' => $cat),array('poll_id' => $id));

            $this->Session->setFlash($this->Success_alert(' The user has been updated.'), 'default', array(), 'success');
            $this->redirect(array('action' => 'index'));
            }else{

            $this->Session->setFlash($this->Error_alert(' Unable to update your user.'), 'default', array(), 'error');

            }
    }
        if (!$this->request->data) {
        $this->request->data = $category;
        }
        }else{
        $this->Session->setFlash($this->Error_alert(' Not Accessible. Log in As Administrator!'), 'default', array(), 'error');
        $this->redirect(array('controller' => 'users','action' => 'home'));
    }
}
 $pcategory = $this->Pcategory->find('list', array('fields' => array('id','name')));
             $this->set(compact('pcategory','pc',$pcategory,$pc));

}