function emfield_update_6200 in Embedded Media Field 6.2
Same name and namespace in other branches
- 6.3 emfield.install \emfield_update_6200()
Build a table to cache XML results.
File
- ./
emfield.install, line 221 - This is the emfield.module's install, configuration, and removal file.
Code
function emfield_update_6200() {
$schema = array();
$schema['cache_emfield_xml'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_emfield_xml']['description'] = 'Cache table used to store third party XML files for Embedded Media Field.';
$ret = array();
db_create_table($ret, 'cache_emfield_xml', $schema['cache_emfield_xml']);
return $ret;
}