You are here

function media_update_7205 in D7 Media 7.4

Same name and namespace in other branches
  1. 7.2 media.install \media_update_7205()
  2. 7.3 media.install \media_update_7205()

Drop the unused {media_list_type} table.

File

./media.install, line 800
Install, update and uninstall functions for the Media module.

Code

function media_update_7205() {
  if (db_table_exists('media_list_type')) {
    db_drop_table('media_list_type');
    return t('Dropped the unused {media_list_type} table.');
  }
}