wiki/content/20201112132331-unique_constraint.md

23 lines
347 B
Markdown
Raw Normal View History

2024-05-06 22:40:05 +02:00
---
2024-10-30 18:04:36 +01:00
date: 20201112
2024-05-06 22:40:05 +02:00
id: ebceb7b8-5242-482b-b258-2cf9c25d1788
title: Unique Constraint
---
# Syntax
``` php
// src/Entity/Person.php
namespace App\Entity;
use Symfony\Component\Validator\Constraints as Assert;
class Person
{
/**
* @Assert\Unique(message="The {{ value }} email is repeated.")
*/
protected $contactEmails;
}
```