diff options
author | xue <> | 2007-10-21 20:52:05 +0000 |
---|---|---|
committer | xue <> | 2007-10-21 20:52:05 +0000 |
commit | 360ad2baeba15dfd6e4374d5fa3834cedc34880e (patch) | |
tree | 17c6ef692a148e1ccecc49dabf115b6e36bcc480 /UPGRADE | |
parent | 8bebf49fbfb92f039f56cb22b759d8e84ef19799 (diff) |
AR no long adds/updates/deletes automatically.
Diffstat (limited to 'UPGRADE')
-rw-r--r-- | UPGRADE | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -13,10 +13,11 @@ Upgrading from v3.1.1 ---------------------
- The RELATIONS type declaration in Active Record classes for Many-to-Many using
an association table was change from "self::HAS_MANY" to "self::MANY_TO_MANY".
- E.g. change
+ E.g. change
'albums' => array(self::HAS_MANY, 'Artist', 'album_artists')
to
'albums' => array(self::MANY_TO_MANY, 'Artist', 'album_artists')
+- Active Record no longer automatically adds/removes/updates related objects.
Upgrading from v3.1.0
|