media_migration-8.x-1.x-dev/tests/fixtures/drupal7_media/taxonomy_vocabulary.php
tests/fixtures/drupal7_media/taxonomy_vocabulary.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_vocabulary', array(
'fields' => array(
'vid' => array(
'type' => 'serial',
'not null' => TRUE,
'size' => 'normal',
'unsigned' => TRUE,
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'machine_name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'description' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
),
'hierarchy' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'tiny',
'default' => '0',
'unsigned' => TRUE,
),
'module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
),
),
'primary key' => array(
'vid',
),
'unique keys' => array(
'machine_name' => array(
'machine_name',
),
),
'indexes' => array(
'list' => array(
'weight',
array(
'name',
'191',
),
),
),
'mysql_character_set' => 'utf8',
));
$connection->insert('taxonomy_vocabulary')
->fields(array(
'vid',
'name',
'machine_name',
'description',
'hierarchy',
'module',
'weight',
))
->values(array(
'vid' => '1',
'name' => 'Tags',
'machine_name' => 'tags',
'description' => 'Use tags to group articles on similar topics into categories.',
'hierarchy' => '0',
'module' => 'taxonomy',
'weight' => '0',
))
->execute();
