Skip to content

Commit

Permalink
Merge pull request ZF-Commons#39 from bgallagher/master
Browse files Browse the repository at this point in the history
Allow email field of null
  • Loading branch information
akrabat committed Feb 2, 2013
2 parents 37a96fb + c8f213f commit 419e3ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config/xml/zfcuser/ZfcUser.Entity.User.dcm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@
</id>

<field name="username" type="string" length="255" unique="true" nullable="true" />
<field name="email" type="string" unique="true" length="255" />
<field name="email" type="string" unique="true" length="255" nullable="true"/>
<field name="displayName" column="display_name" type="string" length="50" nullable="true" />
<field name="password" type="string" length="128" />
<field name="state" type="smallint" />

</mapped-superclass>

Expand Down

0 comments on commit 419e3ae

Please sign in to comment.