This is an automated email from the ASF dual-hosted git repository. abulatski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/cayenne-website.git
The following commit(s) were added to refs/heads/master by this push: new 1932278 Update schemas 1932278 is described below commit 19322782eab452ad15bab91c8b34dc84e50a348d Author: Arseni Bulatski <ancars...@gmail.com> AuthorDate: Mon Sep 2 10:12:40 2019 +0300 Update schemas --- src/main/site/static/schema/10/cgen.xsd | 1 + src/main/site/static/schema/10/dbimport.xsd | 9 +++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/main/site/static/schema/10/cgen.xsd b/src/main/site/static/schema/10/cgen.xsd index 7b26e92..b24afb9 100644 --- a/src/main/site/static/schema/10/cgen.xsd +++ b/src/main/site/static/schema/10/cgen.xsd @@ -38,6 +38,7 @@ <xs:element name="usePkgPath" minOccurs="0" type="xs:boolean"/> <xs:element name="overwrite" minOccurs="0" type="xs:boolean"/> <xs:element name="createPropertyNames" minOccurs="0" type="xs:boolean"/> + <xs:element name="superPkg" minOccurs="0" type="xs:string"/> <xs:element name="createPKProperties" minOccurs="0" type="xs:boolean"/> <xs:element name="client" minOccurs="0" type="xs:boolean"/> </xs:sequence> diff --git a/src/main/site/static/schema/10/dbimport.xsd b/src/main/site/static/schema/10/dbimport.xsd index 1d4777e..e5292a0 100644 --- a/src/main/site/static/schema/10/dbimport.xsd +++ b/src/main/site/static/schema/10/dbimport.xsd @@ -30,8 +30,7 @@ <xs:sequence> <xs:element name="catalog" minOccurs="0" maxOccurs="unbounded" type="dbi:catalog"/> <xs:element name="schema" minOccurs="0" maxOccurs="unbounded" type="dbi:schema"/> - <xs:element name="tableType" minOccurs="0" maxOccurs="unbounded" type="dbi:db-type"/> - + <xs:element name="tableTypes" minOccurs="0" type="dbi:tableTypes"/> <xs:element name="defaultPackage" minOccurs="0" type="xs:string"/> <xs:element name="forceDataMapCatalog" minOccurs="0" type="xs:boolean"/> <xs:element name="forceDataMapSchema" minOccurs="0" type="xs:boolean"/> @@ -56,6 +55,12 @@ </xs:restriction> </xs:simpleType> + <xs:complexType name="tableTypes"> + <xs:sequence> + <xs:element name="tableType" type="dbi:db-type" maxOccurs="unbounded"/> + </xs:sequence> + </xs:complexType> + <xs:complexType name="includeTable" mixed="true"> <xs:sequence> <xs:element name="name" minOccurs="0" type="dbi:db-type"/>