You are here

function flag_update_6203 in Flag 7.2

Same name and namespace in other branches
  1. 6.2 flag.install \flag_update_6203()
  2. 7.3 flag.install \flag_update_6203()

Remove count = 0 rows from the count tables.

File

./flag.install, line 403
Flag module install/schema/update hooks.

Code

function flag_update_6203() {
  db_delete('flag_counts')
    ->condition('count', 0)
    ->execute();
}