DatabaseQueue::ensureTableExists

protected DatabaseQueue::ensureTableExists()

Check if the table exists and create it if not.

File

core/lib/Drupal/Core/Queue/DatabaseQueue.php, line 241

Class

DatabaseQueue
Default queue implementation.

Namespace

Drupal\Core\Queue

Code

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;
    }
  }
  // If another process has already created the queue table, attempting to
  // recreate it will throw an exception. In this case just catch the
  // exception and do nothing.
  catch (SchemaObjectExistsException $e) {
    return TRUE;
  }
  return FALSE;
}
doc_Drupal
2016-10-29 08:59:50
Comments
Leave a Comment

Please login to continue.