You are here

function oembedcore_update_7001 in oEmbed 7

Same name and namespace in other branches
  1. 7.0 deprecated/oembedcore.install \oembedcore_update_7001()

Drop vestigial oembedcore_preset table which should have been dropped long ago.

File

modules/oembedcore/oembedcore.install, line 29
Install file for the oembed core

Code

function oembedcore_update_7001() {
  if (db_table_exists('oembedcore_preset')) {
    db_drop_table('oembedcore_preset');
  }
}