|
1 | 1 | <?xml version="1.0"?> |
2 | 2 | <doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping" xsi="http://www.w3.org/2001/XMLSchema-instance" schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd"> |
3 | | - <entity name="Entities\Domain" repository-class="Repositories\Domain" schema="vimbadmin" table="domain"> |
| 3 | + <entity name="Entities\Domain" repository-class="Repositories\Domain" table="domain"> |
4 | 4 | <id name="id" type="bigint"> |
5 | 5 | <generator strategy="AUTO"/> |
6 | 6 | </id> |
7 | 7 | <field name="domain" type="string" length="255" nullable="false"/> |
8 | 8 | <field name="description" type="string" length="255" nullable="true"/> |
9 | | - <field name="max_aliases" type="integer" length="0" nullable="false"/> |
10 | | - <field name="alias_count" type="bigint" nullable="false"/> |
11 | | - <field name="max_mailboxes" type="integer" length="0" nullable="false"/> |
12 | | - <field name="mailbox_count" type="bigint" nullable="false"/> |
13 | | - <field name="max_quota" type="bigint" nullable="false"/> |
14 | | - <field name="quota" type="bigint" nullable="false"/> |
15 | | - <field name="transport" type="string" length="255" nullable="false"/> |
16 | | - <field name="backupmx" type="boolean" nullable="false"/> |
17 | | - <field name="active" type="boolean" nullable="false"/> |
| 9 | + <field name="max_aliases" type="integer" length="0" nullable="false"> |
| 10 | + <options> |
| 11 | + <option name="default">0</option> |
| 12 | + </options> |
| 13 | + </field> |
| 14 | + <field name="alias_count" type="bigint" nullable="false"> |
| 15 | + <options> |
| 16 | + <option name="default">0</option> |
| 17 | + </options> |
| 18 | + </field> |
| 19 | + <field name="max_mailboxes" type="integer" length="0" nullable="false"> |
| 20 | + <options> |
| 21 | + <option name="default">0</option> |
| 22 | + </options> |
| 23 | + </field> |
| 24 | + <field name="mailbox_count" type="bigint" nullable="false"> |
| 25 | + <options> |
| 26 | + <option name="default">0</option> |
| 27 | + </options> |
| 28 | + </field> |
| 29 | + <field name="max_quota" type="bigint" nullable="false"> |
| 30 | + <options> |
| 31 | + <option name="default">0</option> |
| 32 | + </options> |
| 33 | + </field> |
| 34 | + <field name="quota" type="bigint" nullable="false"> |
| 35 | + <options> |
| 36 | + <option name="default">0</option> |
| 37 | + </options> |
| 38 | + </field> |
| 39 | + <field name="transport" type="string" length="255" nullable="false"> |
| 40 | + <options> |
| 41 | + <option name="default">virtual</option> |
| 42 | + </options> |
| 43 | + </field> |
| 44 | + <field name="backupmx" type="boolean" nullable="false"> |
| 45 | + <options> |
| 46 | + <option name="default">0</option> |
| 47 | + </options> |
| 48 | + </field> |
| 49 | + <field name="active" type="boolean" nullable="false"> |
| 50 | + <options> |
| 51 | + <option name="default">1</option> |
| 52 | + </options> |
| 53 | + </field> |
18 | 54 | <field name="homedir" type="string" length="255" nullable="true"/> |
19 | 55 | <field name="maildir" type="string" length="255" nullable="true"/> |
20 | 56 | <field name="uid" type="integer" nullable="true"/> |
|
0 commit comments