You are here

function domain_conf_update_7301 in Domain Access 7.3

Increases the size of the {domain_conf}.settings to long blob.

File

domain_conf/domain_conf.install, line 117
Install file for Domain Conf.

Code

function domain_conf_update_7301(&$sandbox) {
  $updated_field = array(
    'type' => 'blob',
    'size' => 'big',
    'not null' => FALSE,
  );
  db_change_field('domain_conf', 'settings', 'settings', $updated_field);
}