media_migration-8.x-1.x-dev/tests/fixtures/drupal7_nomedia/block_custom.php
tests/fixtures/drupal7_nomedia/block_custom.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('block_custom', array(
'fields' => array(
'bid' => array(
'type' => 'serial',
'not null' => TRUE,
'size' => 'normal',
'unsigned' => TRUE,
),
'body' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
),
'info' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'format' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
),
'primary key' => array(
'bid',
),
'unique keys' => array(
'info' => array(
'info',
),
),
'mysql_character_set' => 'utf8',
));
