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

The columns attribute of the index type was xs:NMTOKENS, therefore not allowing a comma, which is needed when multiple columns need to be specified. (I've checked the XmlDriver code for this)

It should be the same as the `columns` attribute of the `unique-constraints` type, namely `xs:string`.
This commit is contained in:
Peter Kruithof 2011-06-14 02:36:49 -07:00
parent d5daf161c6
commit 05bf8477a3

View File

@ -212,7 +212,7 @@
<xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other"/>
</xs:sequence>
<xs:attribute name="name" type="xs:NMTOKEN" use="optional"/>
<xs:attribute name="columns" type="xs:NMTOKENS" use="required"/>
<xs:attribute name="columns" type="xs:string" use="required"/>
<xs:anyAttribute namespace="##other"/>
</xs:complexType>