/**
  * Add TAG to PRODUCT relations
  *
  * @param Mage_Tag_Model_Tag $model
  * @param array $productIds
  * @return Mage_Tag_Model_Tag_Relation
  */
 public function addRelations(Mage_Tag_Model_Tag $model, $productIds = array())
 {
     $this->setAddedProductIds($productIds);
     $this->setTagId($model->getTagId());
     $this->setCustomerId(null);
     $this->setStoreId($model->getStore());
     $this->_getResource()->addRelations($this);
     return $this;
 }