media_migration-8.x-1.x-dev/tests/fixtures/drupal7_nomedia/ctools_object_cache.php
tests/fixtures/drupal7_nomedia/ctools_object_cache.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('ctools_object_cache', array(
'fields' => array(
'sid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
),
'obj' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
),
'updated' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'size' => 'big',
),
),
'primary key' => array(
'sid',
'obj',
'name',
),
'indexes' => array(
'updated' => array(
'updated',
),
),
'mysql_character_set' => 'utf8mb4',
));
