Changeset 2323 for trunk/UPGRADE

Show
Ignore:
Timestamp:
10/21/2007 03:52:05 PM (13 months ago)
Author:
xue
Message:

AR no long adds/updates/deletes automatically.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/UPGRADE

    r2309 r2323  
    1414- The RELATIONS type declaration in Active Record classes for Many-to-Many using 
    1515  an association table was change from "self::HAS_MANY" to "self::MANY_TO_MANY". 
    16   E.g. change  
     16  E.g. change 
    1717     'albums' => array(self::HAS_MANY, 'Artist', 'album_artists') 
    1818  to 
    1919     'albums' => array(self::MANY_TO_MANY, 'Artist', 'album_artists') 
     20- Active Record no longer automatically adds/removes/updates related objects. 
    2021 
    2122