function domain_conf_update_7002 in Domain Access 7.2
Increases the size of the {domain_conf}.settings to long blob.
File
- domain_conf/
domain_conf.install, line 98 - Install file.
Code
function domain_conf_update_7002(&$sandbox) {
$updated_field = array(
'type' => 'blob',
'size' => 'big',
'not null' => FALSE,
);
db_change_field('domain_conf', 'settings', 'settings', $updated_field);
}