You are here

function finder_update_7205 in Finder 7.2

Install a table for precalculation of choices.

File

./finder.install, line 609
Finder module install file.

Code

function finder_update_7205() {
  if (!db_table_exists('finder_choice')) {
    db_create_table('finder_choice', drupal_get_schema_unprocessed('finder', 'finder_choice'));
  }
  return 'Install a table for precalculation of choices.';
}