media_migration-8.x-1.x-dev/tests/fixtures/drupal7_media/taxonomy_term_hierarchy.php
tests/fixtures/drupal7_media/taxonomy_term_hierarchy.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('taxonomy_term_hierarchy', array(
'fields' => array(
'tid' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'parent' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
),
'primary key' => array(
'tid',
'parent',
),
'indexes' => array(
'parent' => array(
'parent',
),
),
'mysql_character_set' => 'utf8',
));
