You are here

function smart_paging_update_7001 in Smart Paging 7

Same name and namespace in other branches
  1. 7.2 smart_paging.install \smart_paging_update_7001()

Change type of configuration field from big text to blob.

File

./smart_paging.install, line 80
Smart paging installation callback.

Code

function smart_paging_update_7001() {
  $spec = array(
    'type' => 'blob',
    'not null' => FALSE,
    'description' => 'Customized settings of Smart Paging (serialized).',
  );
  db_change_field('smart_paging', 'configuration', 'configuration', $spec);
}