Author: hans
Date: 2005-09-12 20:32:56 -0400 (Mon, 12 Sep 2005)
New Revision: 194
Modified:
trunk/docs/user_guide/book/chapters/AdvancedObjectModel.html
Log:
#82. Fixed the example to not use a reserved PHP word for the column name.
Modified: trunk/docs/user_guide/book/chapters/AdvancedObjectModel.html
===================================================================
--- trunk/docs/user_guide/book/chapters/AdvancedObjectModel.html
2005-09-12 16:43:33 UTC (rev 193)
+++ trunk/docs/user_guide/book/chapters/AdvancedObjectModel.html
2005-09-13 00:32:56 UTC (rev 194)
@@ -64,7 +64,7 @@
<pre title="example of inheritance definition"><table
name="publication">
<column name="id" type="INTEGER"
primaryKey="true"/>
- <column name="class" type="INTEGER"
inheritance="single">
+ <column name="class_key" type="INTEGER"
inheritance="single">
<inheritance key="1" class="Journal"
extends="bookstore.Publication"/>
<inheritance key="2" class="Magazine"
extends="bookstore.Journal"/>
</column>
|