Mercurial > hg > isophonics-drupal-site
view core/modules/contact/tests/drupal-7.contact.database.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 4c8ae668cc8c |
children | af1871eacc83 |
line wrap: on
line source
<?php /** * @file * Database additions for Drupal\contact\Tests\ContactUpgradePathTest. * * This dump only contains data for the contact module. The * drupal-7.filled.bare.php file is imported before this dump, so the two form * the database structure expected in tests altogether. */ // Update the default category to that it is not selected. db_update('contact') ->fields(['selected' => '0']) ->condition('cid', '1') ->execute(); // Add a custom contact category. db_insert('contact')->fields([ 'category', 'recipients', 'reply', 'weight', 'selected', ]) ->values([ 'category' => 'Upgrade test', 'recipients' => 'test1@example.com,test2@example.com', 'reply' => 'Test reply', 'weight' => 1, 'selected' => 1, ]) ->execute();