media_migration-8.x-1.x-dev/tests/fixtures/drupal7_media/taxonomy_term_data.php
tests/fixtures/drupal7_media/taxonomy_term_data.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_data', array(
'fields' => array(
'tid' => array(
'type' => 'serial',
'not null' => TRUE,
'size' => 'normal',
'unsigned' => TRUE,
),
'vid' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'description' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
),
'format' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
),
),
'primary key' => array(
'tid',
),
'indexes' => array(
'taxonomy_tree' => array(
'vid',
'weight',
array(
'name',
'191',
),
),
'vid_name' => array(
'vid',
array(
'name',
'191',
),
),
'name' => array(
array(
'name',
'191',
),
),
),
'mysql_character_set' => 'utf8',
));
