You are here

function metatag_update_7111 in Metatag 7

Remove the "metatag_ui" record from the {system} table.

File

./metatag.install, line 2600
Install, update, and uninstall functions for the metatag module.

Code

function metatag_update_7111() {
  db_delete('system')
    ->condition('name', 'metatag_ui')
    ->execute();
}