You are here

function facetapi_update_7102 in Facet API 7.2

Same name and namespace in other branches
  1. 7 facetapi.install \facetapi_update_7102()

Fix Postgres compatibility issue.

File

./facetapi.install, line 211
Install, update, and uninstall functions for the Facet API module.

Code

function facetapi_update_7102() {
  db_change_field('facetapi', 'settings', 'settings', array(
    'type' => 'blob',
    'description' => 'Serialized storage of general settings.',
    'serialize' => TRUE,
  ));
}