You are here

function oauthconnector_schema in OAuth Connector 6

Same name and namespace in other branches
  1. 7 oauthconnector.install \oauthconnector_schema()

Implementation of hook_schema().

File

./oauthconnector.install, line 25
Install, update and uninstall functions for the OAuth Connector module.

Code

function oauthconnector_schema() {
  $schema = array();
  $schema['oauthconnector_provider'] = _oauthconnector_provider_schema_1();
  $schema['oauthconnector_connections'] = _oauthconnector_connections_schema_1();
  return $schema;
}