|
295 | 295 | </xs:choice>
|
296 | 296 | <xs:attribute name="name" type="xs:NMTOKEN" use="required" />
|
297 | 297 | <xs:attribute name="type" type="xs:NMTOKEN" default="string" />
|
298 |
| - <xs:attribute name="column" type="xs:NMTOKEN" /> |
| 298 | + <xs:attribute name="column" type="orm:columntoken" /> |
299 | 299 | <xs:attribute name="length" type="xs:NMTOKEN" />
|
300 | 300 | <xs:attribute name="unique" type="xs:boolean" default="false" />
|
301 | 301 | <xs:attribute name="nullable" type="xs:boolean" default="false" />
|
|
402 | 402 | </xs:choice>
|
403 | 403 | <xs:attribute name="name" type="xs:NMTOKEN" use="required" />
|
404 | 404 | <xs:attribute name="type" type="xs:NMTOKEN" />
|
405 |
| - <xs:attribute name="column" type="xs:NMTOKEN" /> |
| 405 | + <xs:attribute name="column" type="orm:columntoken" /> |
406 | 406 | <xs:attribute name="length" type="xs:NMTOKEN" />
|
407 | 407 | <xs:attribute name="association-key" type="xs:boolean" default="false" />
|
408 | 408 | <xs:attribute name="column-definition" type="xs:string" />
|
|
497 | 497 | </xs:restriction>
|
498 | 498 | </xs:simpleType>
|
499 | 499 |
|
| 500 | + <xs:simpleType name="columntoken" id="columntoken"> |
| 501 | + <xs:restriction base="xs:token"> |
| 502 | + <xs:pattern value="[-._:A-Za-z0-9`]+" id="columntoken.pattern"/> |
| 503 | + </xs:restriction> |
| 504 | + </xs:simpleType> |
| 505 | + |
500 | 506 | <xs:complexType name="many-to-many">
|
501 | 507 | <xs:choice minOccurs="0" maxOccurs="unbounded">
|
502 | 508 | <xs:element name="cache" type="orm:cache" minOccurs="0" maxOccurs="1"/>
|
|
612 | 618 | <xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other"/>
|
613 | 619 | </xs:choice>
|
614 | 620 | <xs:attribute name="type" type="xs:NMTOKEN" default="string" />
|
615 |
| - <xs:attribute name="column" type="xs:NMTOKEN" /> |
| 621 | + <xs:attribute name="column" type="orm:columntoken" /> |
616 | 622 | <xs:attribute name="length" type="xs:NMTOKEN" />
|
617 | 623 | <xs:attribute name="unique" type="xs:boolean" default="false" />
|
618 | 624 | <xs:attribute name="nullable" type="xs:boolean" default="false" />
|
|
0 commit comments