You are here

function search_autocomplete_update_7406 in Search Autocomplete 7.4

Update default values from theme: now forms use the new multi-field theme by default.

File

./search_autocomplete.install, line 302
This file is used to install/update/delete the module tables in database

Code

function search_autocomplete_update_7406(&$sandbox) {
  db_change_field('search_autocomplete_forms', 'theme', 'theme', array(
    'description' => 'Theme to use with this form',
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
    'default' => 'basic-green.css',
  ));
}