function feeds_update_6002 in Feeds 6
Same name and namespace in other branches
- 7 feeds.install \feeds_update_6002()
Rename table.
File
- ./
feeds.install, line 282 - Schema definitions install/update/uninstall hooks.
Code
function feeds_update_6002() {
$ret = array();
db_rename_table($ret, 'feeds_config', 'feeds_importer');
return $ret;
}