You are here

function google_appliance_update_6000 in Google Search Appliance 6.2

File

./google_appliance.install, line 81
Installation file for building tables for Google Integration

Code

function google_appliance_update_6000() {
  $ret = array();
  db_add_field($ret, 'cache_google', 'serialized', array(
    'type' => 'int',
    'not null' => TRUE,
    'size' => 'small',
    'default' => 0,
  ));
  return $ret;
}