Index: google_appliance.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/google_appliance/google_appliance.install,v retrieving revision 1.1.4.1 diff -u -p -r1.1.4.1 google_appliance.install --- google_appliance.install 26 Feb 2009 13:15:43 -0000 1.1.4.1 +++ google_appliance.install 27 Feb 2009 18:11:19 -0000 @@ -77,4 +77,17 @@ function google_appliance_schema() { ); return $schema; -} \ No newline at end of file +} + +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; +}