diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-11-04 08:02:02 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-11-04 08:02:02 +0100 |
commit | 7e9c1d65b1e43364011fed133078f1c5ea02440d (patch) | |
tree | 4f9dbbd30ecf05af2f9737298ee2556eb5c8c4ad /src | |
parent | 1e7b04d4eada9b1a9064cbd8c9bf2de63ae63e76 (diff) | |
download | wallabag-7e9c1d65b1e43364011fed133078f1c5ea02440d.tar.gz wallabag-7e9c1d65b1e43364011fed133078f1c5ea02440d.tar.zst wallabag-7e9c1d65b1e43364011fed133078f1c5ea02440d.zip |
Add index into Table definition
Diffstat (limited to 'src')
-rw-r--r-- | src/Wallabag/CoreBundle/Entity/Entry.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Entry.php b/src/Wallabag/CoreBundle/Entity/Entry.php index dd0f7e67..f59c445f 100644 --- a/src/Wallabag/CoreBundle/Entity/Entry.php +++ b/src/Wallabag/CoreBundle/Entity/Entry.php | |||
@@ -19,7 +19,11 @@ use Wallabag\AnnotationBundle\Entity\Annotation; | |||
19 | * | 19 | * |
20 | * @XmlRoot("entry") | 20 | * @XmlRoot("entry") |
21 | * @ORM\Entity(repositoryClass="Wallabag\CoreBundle\Repository\EntryRepository") | 21 | * @ORM\Entity(repositoryClass="Wallabag\CoreBundle\Repository\EntryRepository") |
22 | * @ORM\Table(name="`entry`", options={"collate"="utf8mb4_unicode_ci", "charset"="utf8mb4"}) | 22 | * @ORM\Table( |
23 | * name="`entry`", | ||
24 | * options={"collate"="utf8mb4_unicode_ci", "charset"="utf8mb4"}, | ||
25 | * indexes={@ORM\Index(name="created_at", columns={"created_at"})} | ||
26 | * ) | ||
23 | * @ORM\HasLifecycleCallbacks() | 27 | * @ORM\HasLifecycleCallbacks() |
24 | * @Hateoas\Relation("self", href = "expr('/api/entries/' ~ object.getId())") | 28 | * @Hateoas\Relation("self", href = "expr('/api/entries/' ~ object.getId())") |
25 | */ | 29 | */ |