function media_update_7001 in D7 Media 7
Same name and namespace in other branches
- 7.4 media.install \media_update_7001()
- 7.2 media.install \media_update_7001()
- 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']);
}