You are here

function advpoll_update_7002 in Advanced Poll 7.3

Change entity type of cast votes to node.

File

./advpoll.install, line 838
Install file for Advanced Poll.

Code

function advpoll_update_7002() {
  db_update('votingapi_vote')
    ->fields(array(
    'entity_type' => 'node',
  ))
    ->condition('entity_type', 'advpoll', '=')
    ->execute();
}