media_migration-8.x-1.x-dev/tests/fixtures/drupal7_youtube_field_partial/node_type.php
tests/fixtures/drupal7_youtube_field_partial/node_type.php
<?php
// phpcs:ignoreFile
/**
* @file
* A database agnostic dump for testing purposes.
*
* This file was generated by the Drupal 9.2.6 db-tools.php script.
*/
use Drupal\Core\Database\Database;
$connection = Database::getConnection();
$connection->insert('node_type')
->fields(array(
'type',
'name',
'base',
'module',
'description',
'help',
'has_title',
'title_label',
'custom',
'modified',
'locked',
'disabled',
'orig_type',
))
->values(array(
'type' => 'youtubecontent',
'name' => 'YouTube Content',
'base' => 'node_content',
'module' => 'node',
'description' => '',
'help' => '',
'has_title' => '1',
'title_label' => 'Title',
'custom' => '1',
'modified' => '1',
'locked' => '0',
'disabled' => '0',
'orig_type' => 'youtubecontent',
))
->execute();
