You are here

function saml_sp_update_7203 in SAML Service Provider 7.2

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

Increase the size of the saml_sp_idps app_name field to 255.

File

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

Code

function saml_sp_update_7203(&$sandbox) {
  db_change_field('saml_sp_idps', 'app_name', 'app_name', array(
    'description' => 'Human-readable name to provide to the IDP to identify the application',
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
    'default' => '',
  ));
}