page_manager_migration-1.0.x-dev/tests/fixtures/pm-panels-export/semaphore.php
tests/fixtures/pm-panels-export/semaphore.php
<?php
// phpcs:ignoreFile
/**
* @file
* A database agnostic dump for testing purposes.
*
* This file was generated by the Drupal 9.3.4 db-tools.php script.
*/
use Drupal\Core\Database\Database;
$connection = Database::getConnection();
// Ensure any tables with a serial column with a value of 0 are created as
// expected.
if ($connection->databaseType() === 'mysql') {
$sql_mode = $connection->query("SELECT @@sql_mode;")->fetchField();
$connection->query("SET sql_mode = '$sql_mode,NO_AUTO_VALUE_ON_ZERO'");
}
$connection->schema()->createTable('semaphore', array(
'fields' => array(
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'value' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'expire' => array(
'type' => 'float',
'not null' => TRUE,
'size' => 'big',
),
),
'primary key' => array(
'name',
),
'indexes' => array(
'value' => array(
array(
'value',
'191',
),
),
'expire' => array(
'expire',
),
),
'mysql_character_set' => 'utf8',
));
// Reset the SQL mode.
if ($connection->databaseType() === 'mysql') {
$connection->query("SET sql_mode = '$sql_mode'");
}