function uc_store_update_7006 in Ubercart 7.3
Deletes user initials variables.
File
- uc_store/
uc_store.install, line 259 - Install, update, and uninstall functions for the uc_store module.
Code
function uc_store_update_7006() {
db_delete('variable')
->condition('name', 'user_initials_%', 'LIKE')
->execute();
}