function flag_update_6203 in Flag 7.3
Same name and namespace in other branches
- 6.2 flag.install \flag_update_6203()
- 7.2 flag.install \flag_update_6203()
Remove count = 0 rows from the count tables.
File
- ./
flag.install, line 347 - Flag module install/schema/update hooks.
Code
function flag_update_6203() {
db_delete('flag_counts')
->condition('count', 0)
->execute();
}