select() ->where('user_id=?', $user->id); return $this->fetchAll($select); } public function deleteForProfile(Users_Model_Profile $profile) { $where = $this->getAdapter()->quoteInto('profile_id=?', $profile->id); $this->delete($where); } }