RedirectStorageSchema.php in Multiversion 8
File
src/Redirect/RedirectStorageSchema.php
View source
<?php
namespace Drupal\multiversion\Redirect;
use Drupal\Core\Entity\ContentEntityTypeInterface;
use Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema;
class RedirectStorageSchema extends SqlContentEntityStorageSchema {
protected function getEntitySchema(ContentEntityTypeInterface $entity_type, $reset = FALSE) {
$schema = parent::getEntitySchema($entity_type, $reset);
$schema['redirect']['indexes'] += [
'source_language' => [
[
'redirect_source__path',
191,
],
'language',
],
];
return $schema;
}
}