You are here

function oauth2_server_update_7101 in OAuth2 Server 7

Adds the {oauth2_server_client}.settings field.

File

./oauth2_server.install, line 394

Code

function oauth2_server_update_7101() {
  $spec = array(
    'description' => 'Client specific settings.',
    'type' => 'text',
    'size' => 'big',
    'not null' => TRUE,
    'serialize' => TRUE,
    'initial' => '',
  );
  db_add_field('oauth2_server_client', 'settings', $spec);
}