summaryrefslogtreecommitdiff
path: root/modules/simpletest/tests/actions_loop_test.install
blob: b22fd85ab9d627ccfddf99d5b0335dbb8b426dae (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

/**
 * Implements hook_install().
 */
function actions_loop_test_install() {
   db_update('system')
    ->fields(array('weight' => 1))
    ->condition('name', 'actions_loop_test')
    ->execute();
}