arminw 2005/05/09 07:59:31
Modified: src/schema Tag: OJB_1_0_RELEASE ojbtest-schema.xml
Log:
add new test tables
Revision Changes Path
No revision
No revision
1.80.2.22 +24 -1 db-ojb/src/schema/ojbtest-schema.xml
Index: ojbtest-schema.xml
===================================================================
RCS file: /home/cvs/db-ojb/src/schema/ojbtest-schema.xml,v
retrieving revision 1.80.2.21
retrieving revision 1.80.2.22
diff -u -r1.80.2.21 -r1.80.2.22
--- ojbtest-schema.xml 7 May 2005 16:02:57 -0000 1.80.2.21
+++ ojbtest-schema.xml 9 May 2005 14:59:31 -0000 1.80.2.22
@@ -1299,6 +1299,29 @@
</table>
+ <table name="INHERITANCE_ENTITY">
+ <column name="OBJ_ID" required="true" primaryKey="true"
type="INTEGER"/>
+ <column name="NAME" type="VARCHAR" size="150"/>
+ </table>
+
+ <table name="INHERITANCE_ANIMAL">
+ <column name="OBJ_ID" required="true" primaryKey="true"
type="INTEGER"/>
+ <column name="WEIGHT" type="INTEGER"/>
+ <column name="NAME" type="VARCHAR" size="150"/>
+ <column name="FK_PARENT" type="INTEGER"/>
+ </table>
+
+ <table name="INHERITANCE_DOG">
+ <column name="OBJ_ID" required="true" primaryKey="true"
type="INTEGER"/>
+ <column name="LEGS" type="INTEGER"/>
+ </table>
+
+ <table name="INHERITANCE_FOOD">
+ <column name="OBJ_ID" required="true" primaryKey="true"
type="INTEGER"/>
+ <column name="FK_ANIMAL" type="INTEGER"/>
+ </table>
+
+
<!-- =================================================== -->
<!-- Runtime reference setting test -->
<!-- =================================================== -->
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]