Created
May 13, 2015 07:42
-
-
Save whitewhidow/165eb4dd1eaff9de3b0c to your computer and use it in GitHub Desktop.
make fosuser email nullable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @ORM\Entity | |
| * @ORM\Table(name="fos_user") | |
| * | |
| * @AttributeOverrides({ | |
| * @AttributeOverride(name="emailCanonical", | |
| * column=@ORM\Column( | |
| * name="email_canonical", | |
| * type="string", | |
| * length=255, | |
| * nullable=true, | |
| * unique=false | |
| * ) | |
| * ), | |
| * @AttributeOverride(name="email", | |
| * column=@ORM\Column( | |
| * name="email", | |
| * type="string", | |
| * length=255, | |
| * nullable=true, | |
| * unique=false | |
| * ) | |
| * ) | |
| * }) | |
| * | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment