Show
Ignore:
Timestamp:
01/05/08 19:55:56 (12 months ago)
Author:
romanb
Message:

Merged current state of my experimental branch back to trunk.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/Doctrine.php

    r3458 r3460  
    195195    const ATTR_MODEL_LOADING            = 161; 
    196196 
     197 
     198    /** 
     199     * INHERITANCE TYPE CONSTANTS. 
     200     */ 
     201      
     202     /** 
     203      * Constant for Single Table Inheritance. 
     204      * 
     205      * @see http://martinfowler.com/eaaCatalog/singleTableInheritance.html 
     206      */ 
     207     const INHERITANCETYPE_SINGLE_TABLE = 1; 
     208      
     209     /** 
     210      * Constant for Class Table Inheritance. 
     211      * 
     212      * @see http://martinfowler.com/eaaCatalog/classTableInheritance.html 
     213      */ 
     214     const INHERITANCETYPE_JOINED = 2; 
     215      
     216     /** 
     217      * Constant for Concrete Table Inheritance. 
     218      * 
     219      * @see http://martinfowler.com/eaaCatalog/concreteTableInheritance.html 
     220      */ 
     221     const INHERITANCETYPE_TABLE_PER_CLASS = 3; 
     222 
     223 
    197224    /** 
    198225     * LIMIT CONSTANTS