scheduler-8.x-1.x-dev/tests/fixtures/scheduler_data/field_config_instance.php
tests/fixtures/scheduler_data/field_config_instance.php
<?php
/**
* @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->schema()->createTable('field_config_instance', [
'fields' => [
'id' => [
'type' => 'serial',
'not null' => TRUE,
'size' => 'normal',
],
'field_id' => [
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
],
'field_name' => [
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
],
'entity_type' => [
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
],
'bundle' => [
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
],
'data' => [
'type' => 'blob',
'not null' => TRUE,
'size' => 'big',
],
'deleted' => [
'type' => 'int',
'not null' => TRUE,
'size' => 'tiny',
'default' => '0',
],
],
'primary key' => [
'id',
],
'indexes' => [
'field_name_bundle' => [
'field_name',
'entity_type',
'bundle',
],
'deleted' => [
'deleted',
],
],
'mysql_character_set' => 'utf8mb3',
]);
