You are here

function media_update_7001 in D7 Media 7

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

Create the cache_media_xml table.

File

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

Code

function media_update_7001() {
  $schema['cache_media_xml'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_media_xml']['description'] = 'Cache table for the the results of retreived XML documents for remote streams.';
  db_create_table('cache_media_xml', $schema['cache_media_xml']);
}