[DoctrineBundle] updated XSD based on a visual audit

This commit is contained in:
Kris Wallsmith 2010-05-19 07:12:21 -07:00 committed by Fabien Potencier
parent fe80be7e35
commit 12a09f5cb5
1 changed files with 25 additions and 0 deletions

View File

@ -39,5 +39,30 @@
<xsd:attribute name="driver" type="xsd:string" />
<xsd:attribute name="options" type="xsd:string" />
<xsd:attribute name="path" type="xsd:string" />
<xsd:attribute name="configuration_class" type="xsd:string" />
<xsd:attribute name="event_manager_class" type="xsd:string" />
<xsd:attribute name="wrapper_class" type="xsd:string" />
</xsd:complexType>
<xsd:element name="orm" type="orm" />
<xsd:complexType name="orm">
<xsd:sequence>
<xsd:element name="entity_managers" type="entity_managers" minOccurs="0" maxOccurs="1" />
</xsd:sequence>
<xsd:attribute name="default_entity_manager" type="xsd:string" />
<xsd:attribute name="metadata_driver" type="xsd:string" />
<xsd:attribute name="cache_driver" type="xsd:string" />
</xsd:complexType>
<xsd:complexType name="entity_managers">
<xsd:sequence>
<xsd:element name="entity_manager" type="entity_manager" minOccurs="1" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="entity_manager">
<xsd:attribute name="connection" type="xsd:string" />
</xsd:complexType>
</xsd:schema>