function saml_sp_update_7000 in SAML Service Provider 7.8
Same name and namespace in other branches
- 7.2 saml_sp.install \saml_sp_update_7000()
- 7.3 saml_sp.install \saml_sp_update_7000()
Add field for NameID field to database
File
- ./
saml_sp.install, line 145 - Hook_requirements for the SAML Service Provider module.
Code
function saml_sp_update_7000(&$sandbox) {
db_add_field('saml_sp_idps', 'nameid_field', array(
'description' => 'Name of the fields where NameID is stored.',
'type' => 'varchar',
'length' => 30,
'not null' => TRUE,
'default' => '',
));
}