function menu_token_update_7003 in Menu Token 7
Drop the deprecated menu_token table if it exists.
File
- ./
menu_token.install, line 168 - Install file for menu_token module.
Code
function menu_token_update_7003() {
if (db_table_exists('menu_token')) {
db_drop_table('menu_token');
}
}