You are here

function saml_sp_update_7202 in SAML Service Provider 7.2

Same name and namespace in other branches
  1. 7.8 saml_sp.install \saml_sp_update_7202()
  2. 7.3 saml_sp.install \saml_sp_update_7202()

Add the entity_id field to the saml_sp_idps table.

File

./saml_sp.install, line 187
Hook_requirements for the SAML Service Provider module.

Code

function saml_sp_update_7202(&$sandbox) {
  db_add_field('saml_sp_idps', 'entity_id', array(
    'description' => 'The entityID of the Identity Provider, possibly a URL',
    'type' => 'varchar',
    'length' => '255',
    'not null' => FALSE,
  ));
}