|
3
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
|
|
2 |
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping" |
|
|
3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
|
4 |
xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping |
|
|
5 |
http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd"> |
|
|
6 |
|
|
|
7 |
<mapped-superclass name="FOS\UserBundle\Entity\User"> |
|
|
8 |
|
|
|
9 |
<field name="username" column="username" type="string" length="255" /> |
|
|
10 |
|
|
|
11 |
<field name="usernameCanonical" column="username_canonical" type="string" length="255" unique="true" /> |
|
|
12 |
|
|
|
13 |
<field name="email" column="email" type="string" length="255" /> |
|
|
14 |
|
|
|
15 |
<field name="emailCanonical" column="email_canonical" type="string" length="255" unique="true" /> |
|
|
16 |
|
|
|
17 |
<field name="enabled" column="enabled" type="boolean" /> |
|
|
18 |
|
|
|
19 |
<field name="algorithm" column="algorithm" type="string" /> |
|
|
20 |
|
|
|
21 |
<field name="salt" column="salt" type="string" /> |
|
|
22 |
|
|
|
23 |
<field name="password" column="password" type="string" /> |
|
|
24 |
|
|
|
25 |
<field name="lastLogin" column="last_login" type="datetime" nullable="true" /> |
|
|
26 |
|
|
|
27 |
<field name="locked" column="locked" type="boolean" /> |
|
|
28 |
|
|
|
29 |
<field name="expired" column="expired" type="boolean" /> |
|
|
30 |
|
|
|
31 |
<field name="expiresAt" column="expires_at" type="datetime" nullable="true" /> |
|
|
32 |
|
|
|
33 |
<field name="confirmationToken" column="confirmation_token" type="string" nullable="true" /> |
|
|
34 |
|
|
|
35 |
<field name="passwordRequestedAt" column="password_requested_at" type="datetime" nullable="true" /> |
|
|
36 |
|
|
|
37 |
<field name="roles" column="roles" type="array" /> |
|
|
38 |
|
|
|
39 |
<field name="credentialsExpired" column="credentials_expired" type="boolean" /> |
|
|
40 |
|
|
|
41 |
<field name="credentialsExpireAt" column="credentials_expire_at" type="datetime" nullable="true" /> |
|
|
42 |
|
|
|
43 |
</mapped-superclass> |
|
|
44 |
|
|
|
45 |
</doctrine-mapping> |