l10n_server-2.x-dev/l10n_server/src/Entity/Storage/L10nServerErrorStorageSchema.php
l10n_server/src/Entity/Storage/L10nServerErrorStorageSchema.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 L10nServerErrorStorageSchema extends SqlContentEntityStorageSchema { /** * {@inheritdoc} */ 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_error') { switch ($field_name) { case 'value': $schema['fields'][$field_name]['not null'] = TRUE; } if ($field_name === 'rid') { $this->addSharedTableFieldUniqueKey($storage_definition, $schema); } } return $schema; } }