function entityconnect_update_7000 in Entity connect 7.2
Same name and namespace in other branches
- 7 entityconnect.install \entityconnect_update_7000()
Add cache table.
File
- ./
entityconnect.install, line 96 - Install, update & uninstall functions for the Entity Connect module.
Code
function entityconnect_update_7000() {
if (!db_table_exists('cache_entityconnect')) {
$schema = entityconnect_schema();
db_create_table('cache_entityconnect', $schema['cache_entityconnect']);
}
}