You are here

function file_entity_update_7209 in File Entity (fieldable files) 7.3

Same name and namespace in other branches
  1. 7.2 file_entity.install \file_entity_update_7209()

Remove the {file_type_streams} table if it exists.

File

./file_entity.install, line 895
Install, update and uninstall functions for the file_entity module.

Code

function file_entity_update_7209() {
  if (db_table_exists('file_type_streams')) {
    db_drop_table('file_type_streams');
  }
}