Skip to content

Commit

Permalink
Fix custom-id-generator class attribute type
Browse files Browse the repository at this point in the history
custom-id-generator tag's attribute type must be FQCN. But NMTOKEN type doesn't support backslash character.
  • Loading branch information
ismailbaskin committed May 22, 2016
1 parent b3aa825 commit fafb816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doctrine-mapping.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@
<xs:sequence>
<xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other"/>
</xs:sequence>
<xs:attribute name="class" type="xs:NMTOKEN" use="required" />
<xs:attribute name="class" type="xs:string" use="required" />
</xs:complexType>

<xs:complexType name="inverse-join-columns">
Expand Down

0 comments on commit fafb816

Please sign in to comment.