public function reindex()
 {
     $attribs = AttributeFormKey::getAttributes($this->getID(), 'getSearchIndexValue');
     $db = Database::connection();
     $db->Execute('delete from AttributeFormsIndexAttributes where afID = ?', array($this->getID()));
     $searchableAttributes = array('afID' => $this->getID());
     $rs = $db->Execute('select * from AttributeFormsIndexAttributes where afID = -1');
     AttributeKey::reindex('AttributeFormsIndexAttributes', $searchableAttributes, $attribs, $rs);
 }