You are here

function batch_add_terms_install in Batch add terms 7

Implements hook_install().

File

./batch_add_terms.install, line 6

Code

function batch_add_terms_install() {
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'batch_add_terms')
    ->execute();
}