1 backup_test.install backup_test_install()

Implements hook_install().

File

core/modules/simpletest/tests/backup_test/backup_test.install, line 36
Install and update functions for the Backup test module.

Code

function backup_test_install() {
  db_insert('backup_test')
    ->fields(array(
      'name' => 'test_value1',
      'value' => 'foo',
    ))
    ->execute();
}