media_migration-8.x-1.x-dev/tests/fixtures/drupal7_media/node_comment_statistics.php
tests/fixtures/drupal7_media/node_comment_statistics.php
<?php
// phpcs:ignoreFile
/**
* @file
* A database agnostic dump for testing purposes.
*
* This file was generated by the Drupal 9.2.10 db-tools.php script.
*/
use Drupal\Core\Database\Database;
$connection = Database::getConnection();
$connection->schema()->createTable('node_comment_statistics', array(
'fields' => array(
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'cid' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
),
'last_comment_timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
),
'last_comment_name' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '60',
),
'last_comment_uid' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
),
'comment_count' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
),
'primary key' => array(
'nid',
),
'indexes' => array(
'node_comment_timestamp' => array(
'last_comment_timestamp',
),
'comment_count' => array(
'comment_count',
),
'last_comment_uid' => array(
'last_comment_uid',
),
),
'mysql_character_set' => 'utf8',
));
$connection->insert('node_comment_statistics')
->fields(array(
'nid',
'cid',
'last_comment_timestamp',
'last_comment_name',
'last_comment_uid',
'comment_count',
))
->values(array(
'nid' => '1',
'cid' => '0',
'last_comment_timestamp' => '1587730322',
'last_comment_name' => NULL,
'last_comment_uid' => '1',
'comment_count' => '0',
))
->values(array(
'nid' => '2',
'cid' => '0',
'last_comment_timestamp' => '1588600435',
'last_comment_name' => NULL,
'last_comment_uid' => '2',
'comment_count' => '0',
))
->execute();
