actions_loop_test.install

<?php
// $Id: actions_loop_test.install,v 1.2 2009/12/04 16:49:47 dries Exp $

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