scheduler-8.x-1.x-dev/tests/fixtures/scheduler_data/variable.php
tests/fixtures/scheduler_data/variable.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('variable', [
'fields' => [
'name' => [
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
],
'value' => [
'type' => 'blob',
'not null' => TRUE,
'size' => 'big',
],
],
'primary key' => [
'name',
],
'mysql_character_set' => 'utf8mb3',
]);
