protected function DatabaseQueue::ensureTableExists in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Queue/DatabaseQueue.php \Drupal\Core\Queue\DatabaseQueue::ensureTableExists()
- 10 core/lib/Drupal/Core/Queue/DatabaseQueue.php \Drupal\Core\Queue\DatabaseQueue::ensureTableExists()
Check if the table exists and create it if not.
1 call to DatabaseQueue::ensureTableExists()
- DatabaseQueue::createItem in core/
lib/ Drupal/ Core/ Queue/ DatabaseQueue.php - Adds a queue item and store it directly to the queue.
File
- core/
lib/ Drupal/ Core/ Queue/ DatabaseQueue.php, line 266
Class
- DatabaseQueue
- Default queue implementation.
Namespace
Drupal\Core\QueueCode
protected function ensureTableExists() {
try {
$database_schema = $this->connection
->schema();
if (!$database_schema
->tableExists(static::TABLE_NAME)) {
$schema_definition = $this
->schemaDefinition();
$database_schema
->createTable(static::TABLE_NAME, $schema_definition);
return TRUE;
}
} catch (DatabaseException $e) {
return TRUE;
}
return FALSE;
}