You are here

function key_update_7105 in Key 7

Change "storage settings" db field to "provider settings".

File

./key.install, line 183
Install, update and uninstall functions for the Key module.

Code

function key_update_7105() {
  if (db_field_exists('key_config', 'storage_settings')) {
    db_change_field('key_config', 'storage_settings', 'provider_settings', array(
      'description' => 'Additional settings for the key provider.',
      'type' => 'blob',
      'not null' => FALSE,
      'size' => 'big',
    ));
  }
}