aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/InternalSetting.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2018-10-29 14:33:41 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2018-10-29 14:33:41 +0100
commit48c802da124ccb44f9602ae05af3bf1d2082a8d0 (patch)
treee3c1d7acf3cc9ac9582880210671c6253928af77 /src/Wallabag/CoreBundle/Entity/InternalSetting.php
parent2e1c165316102a622f6f57bcb3422aaa76962043 (diff)
downloadwallabag-48c802da124ccb44f9602ae05af3bf1d2082a8d0.tar.gz
wallabag-48c802da124ccb44f9602ae05af3bf1d2082a8d0.tar.zst
wallabag-48c802da124ccb44f9602ae05af3bf1d2082a8d0.zip
fixup! Debug MySQL failing
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/InternalSetting.php')
-rw-r--r--src/Wallabag/CoreBundle/Entity/InternalSetting.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/InternalSetting.php b/src/Wallabag/CoreBundle/Entity/InternalSetting.php
new file mode 100644
index 00000000..419a2778
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Entity/InternalSetting.php
@@ -0,0 +1,36 @@
1<?php
2
3namespace Wallabag\CoreBundle\Entity;
4
5use Craue\ConfigBundle\Entity\BaseSetting;
6use Doctrine\ORM\Mapping as ORM;
7
8/**
9 * Internal Setting.
10 *
11 * @ORM\Entity(repositoryClass="Craue\ConfigBundle\Repository\SettingRepository")
12 * @ORM\Table(name="internal_setting")
13 * @ORM\AttributeOverrides({
14 * @ORM\AttributeOverride(name="name",
15 * column=@ORM\Column(
16 * name = "name",
17 * length = 191
18 * )
19 * ),
20 * @ORM\AttributeOverride(name="section",
21 * column=@ORM\Column(
22 * name = "section",
23 * length = 191
24 * )
25 * )
26 * })
27 */
28class InternalSetting extends BaseSetting
29{
30 /**
31 * @var string|null
32 *
33 * @ORM\Column(name="value", type="string", nullable=true, length=191)
34 */
35 protected $value;
36}