1
0
mirror of synced 2024-12-05 03:06:05 +03:00

[2.0] DDC-195 - Updated XSD Schema

This commit is contained in:
beberlei 2010-02-26 22:02:31 +00:00
parent 35d795b25f
commit 457d832f52

View File

@ -218,9 +218,16 @@
<xs:complexType name="order-by-field">
<xs:attribute name="field" type="XS:NMTOKEN" use="required" />
<xs:attribute name="direction" type="XS:NMTOKEN" default="ASC" />
<xs:attribute name="direction" type="orm:order-by-direction" default="ASC" />
</xs:complexType>
<xs:simpleType name="order-by-direction">
<xs:restriction base="xs:token">
<xs:enumeration value="ASC"/>
<xs:enumeration value="DESC"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="many-to-many">
<xs:sequence>
<xs:element name="cascade" type="orm:cascade-type" minOccurs="0" />