You are here

function feeds_xls_update_7001 in Feeds XLS 7

Delete any item from the feeds_item table which has an empty GUID

File

./feeds_xls.install, line 65

Code

function feeds_xls_update_7001() {

  // Delete any instances from feeds_item with blank GUIDs.
  db_delete('feeds_item')
    ->condition('guid', '')
    ->execute();
}