Changeset 2323 for trunk/UPGRADE
- Timestamp:
- 10/21/2007 03:52:05 PM (13 months ago)
- Files:
-
- 1 modified
-
trunk/UPGRADE (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/UPGRADE
r2309 r2323 14 14 - The RELATIONS type declaration in Active Record classes for Many-to-Many using 15 15 an association table was change from "self::HAS_MANY" to "self::MANY_TO_MANY". 16 E.g. change 16 E.g. change 17 17 'albums' => array(self::HAS_MANY, 'Artist', 'album_artists') 18 18 to 19 19 'albums' => array(self::MANY_TO_MANY, 'Artist', 'album_artists') 20 - Active Record no longer automatically adds/removes/updates related objects. 20 21 21 22
