function smart_paging_update_7001 in Smart Paging 7.2
Same name and namespace in other branches
- 7 smart_paging.install \smart_paging_update_7001()
Change type of configuration field from big text to blob.
File
- ./
smart_paging.install, line 86 - 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);
}