media_migration-8.x-1.x-dev/tests/fixtures/drupal7_media/batch.php
tests/fixtures/drupal7_media/batch.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('batch', array(
'fields' => array(
'bid' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'unsigned' => TRUE,
),
'token' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
),
'timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
),
'batch' => array(
'type' => 'blob',
'not null' => FALSE,
'size' => 'big',
),
),
'primary key' => array(
'bid',
),
'indexes' => array(
'token' => array(
'token',
),
),
'mysql_character_set' => 'utf8',
));
