media_migration-8.x-1.x-dev/tests/fixtures/drupal7_media/search_node_links.php
tests/fixtures/drupal7_media/search_node_links.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('search_node_links', array(
'fields' => array(
'sid' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '16',
'default' => '',
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'caption' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
),
),
'primary key' => array(
'sid',
'type',
'nid',
),
'indexes' => array(
'nid' => array(
'nid',
),
),
'mysql_character_set' => 'utf8',
));
