You are here

function user_relationships_api_update_6101 in User Relationships 6

Implementation of hook_update_N(). Update 6101 adds the {user_relationship_type_roles} table

File

user_relationships_api/user_relationships_api.install, line 102
User Relationships API Module installation file.

Code

function user_relationships_api_update_6101() {
  $ret = array();
  $schema = drupal_get_schema_unprocessed('user_relationships_api');
  _drupal_initialize_schema('user_relationships_api', $schema);
  db_create_table($ret, 'user_relationship_type_roles', $schema['user_relationship_type_roles']);
  return $ret;
}