function oauth2_server_update_7102 in OAuth2 Server 7
Adds the {oauth2_server_authorization_code}.id_token field.
File
- ./
oauth2_server.install, line 409
Code
function oauth2_server_update_7102() {
$spec = array(
'description' => 'The id token, if OpenID Connect was used.',
'type' => 'text',
);
db_add_field('oauth2_server_authorization_code', 'id_token', $spec);
}