l10n_server-2.x-dev/l10n_server/src/Entity/Storage/L10nServerTranslationHistoryStorageSchema.php
l10n_server/src/Entity/Storage/L10nServerTranslationHistoryStorageSchema.php
<?php declare(strict_types=1); namespace Drupal\l10n_server\Entity\Storage; use Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema; use Drupal\Core\Field\FieldStorageDefinitionInterface; /** * Storage schema class. */ class L10nServerTranslationHistoryStorageSchema extends SqlContentEntityStorageSchema { /** * {@inheritdoc} * * @todo Add a 'unique keys' => ['uri_connector_module' => ['uri', 'connector_module']] to the table. */ protected function getSharedTableFieldSchema(FieldStorageDefinitionInterface $storage_definition, $table_name, array $column_mapping): array { $schema = parent::getSharedTableFieldSchema($storage_definition, $table_name, $column_mapping); $field_name = $storage_definition->getName(); if ($table_name === 'l10n_server_translation_history') { } return $schema; } }