wallabag/src/Entity/InternalSetting.php

25 lines
526 B
PHP
Raw Normal View History

2019-08-08 13:19:53 +00:00
<?php
2024-02-19 00:30:12 +00:00
namespace Wallabag\Entity;
2019-08-08 13:19:53 +00:00
use Craue\ConfigBundle\Entity\BaseSetting;
use Doctrine\ORM\Mapping as ORM;
/**
* InternalSetting.
*
* Re-define setting so we can override length attribute to fix utf8mb4 issue.
*
* @ORM\Entity(repositoryClass="Craue\ConfigBundle\Repository\SettingRepository")
* @ORM\Table(name="`internal_setting`")
*/
class InternalSetting extends BaseSetting
{
/**
* @var string|null
*
2024-03-10 16:30:29 +00:00
* @ORM\Column(name="value", type="string", nullable=true)
2019-08-08 13:19:53 +00:00
*/
protected $value;
}