Changeset 2309 for trunk/UPGRADE

Show
Ignore:
Timestamp:
10/07/2007 10:24:07 PM (14 months ago)
Author:
wei
Message:

Allow active records to have multiple foreign key references to the same table. Add TXCache.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/UPGRADE

    r2283 r2309  
    1212Upgrading from v3.1.1 
    1313--------------------- 
     14- The RELATIONS type declaration in Active Record classes for Many-to-Many using 
     15  an association table was change from "self::HAS_MANY" to "self::MANY_TO_MANY". 
     16  E.g. change  
     17     'albums' => array(self::HAS_MANY, 'Artist', 'album_artists') 
     18  to 
     19     'albums' => array(self::MANY_TO_MANY, 'Artist', 'album_artists') 
     20 
    1421 
    1522Upgrading from v3.1.0