You are here

function entityconnect_schema in Entity connect 7

Same name and namespace in other branches
  1. 7.2 entityconnect.install \entityconnect_schema()

Implements hook_schema().

1 call to entityconnect_schema()
entityconnect_update_7000 in ./entityconnect.install
Add cache table.

File

./entityconnect.install, line 74
Install, update & uninstall functions for the Entity Connect module.

Code

function entityconnect_schema() {
  $schema = array();
  $schema['cache_entityconnect'] = drupal_get_schema_unprocessed('system', 'cache');
  return $schema;
}