<?php
declare(strict_types=1);
namespace App\Entity\Product;
use Doctrine\ORM\Mapping as ORM;
use Sylius\Component\Core\Model\ProductTranslation as BaseProductTranslation;
/**
* @ORM\Entity
* @ORM\Table(name="sylius_product_translation")
* @ORM\MappedSuperclass()
* @ORM\AttributeOverrides({
* @ORM\AttributeOverride(
* name="metaKeywords",
* column=@ORM\Column(
* name="meta_keywords",
* type="string",
* length=2000,
* nullable=true
* )
* )
* })
*/
class ProductTranslation extends BaseProductTranslation
{
}