]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Entity/InternalSetting.php
fixup! Debug MySQL failing
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Entity / InternalSetting.php
diff --git a/src/Wallabag/CoreBundle/Entity/InternalSetting.php b/src/Wallabag/CoreBundle/Entity/InternalSetting.php
deleted file mode 100644 (file)
index 419a277..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-namespace Wallabag\CoreBundle\Entity;
-
-use Craue\ConfigBundle\Entity\BaseSetting;
-use Doctrine\ORM\Mapping as ORM;
-
-/**
- * Internal Setting.
- *
- * @ORM\Entity(repositoryClass="Craue\ConfigBundle\Repository\SettingRepository")
- * @ORM\Table(name="internal_setting")
- * @ORM\AttributeOverrides({
- *      @ORM\AttributeOverride(name="name",
- *          column=@ORM\Column(
- *              name     = "name",
- *              length   = 191
- *          )
- *      ),
- *      @ORM\AttributeOverride(name="section",
- *          column=@ORM\Column(
- *              name     = "section",
- *              length   = 191
- *          )
- *      )
- * })
- */
-class InternalSetting extends BaseSetting
-{
-    /**
-     * @var string|null
-     *
-     * @ORM\Column(name="value", type="string", nullable=true, length=191)
-     */
-    protected $value;
-}