You are here

RedirectStorageSchema.php in Redirect 8

Namespace

Drupal\redirect

File

src/RedirectStorageSchema.php
View source
<?php

namespace Drupal\redirect;

use Drupal\Core\Entity\ContentEntityTypeInterface;
use Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema;

/**
 * Defines the redirect schema.
 */
class RedirectStorageSchema extends SqlContentEntityStorageSchema {

  /**
   * {@inheritdoc}
   */
  protected function getEntitySchema(ContentEntityTypeInterface $entity_type, $reset = FALSE) {
    $schema = parent::getEntitySchema($entity_type, $reset);

    // Add indexes.
    $schema['redirect']['unique keys'] += [
      'hash' => [
        'hash',
      ],
    ];
    $schema['redirect']['indexes'] += [
      // Limit length to 191.
      'source_language' => [
        [
          'redirect_source__path',
          191,
        ],
        'language',
      ],
    ];
    return $schema;
  }

}

Classes

Namesort descending Description
RedirectStorageSchema Defines the redirect schema.