drupal-7.user_data.database.php

File

drupal/core/modules/system/tests/upgrade/drupal-7.user_data.database.php
View source
<?php

/**
 * @file
 * Database additions for role tests. Used in
 * \Drupal\system\Tests\Upgrade\FilledStandardUpgradePathTest.
 *
 * This dump only contains data and schema components relevant for user data
 * upgrade tests. The drupal-7.filed.database.php.gz file is imported before
 * this dump, so the two form the database structure expected in tests
 * altogether.
 */
db_update('users')
  ->condition('uid', 1)
  ->fields(array(
  'data' => serialize(array(
    'contact' => 1,
    'overlay_message_dismissed' => '1',
    'overlay' => '1',
    'garbage' => 'data',
  )),
))
  ->execute();
db_update('users')
  ->condition('uid', 2)
  ->fields(array(
  'data' => serialize(array(
    'contact' => '0',
    'overlay' => 1,
    'more' => array(
      'garbage',
      'data',
    ),
  )),
))
  ->execute();