summaryrefslogtreecommitdiff
path: root/UPGRADE
diff options
context:
space:
mode:
authorxue <>2007-10-21 20:52:05 +0000
committerxue <>2007-10-21 20:52:05 +0000
commit360ad2baeba15dfd6e4374d5fa3834cedc34880e (patch)
tree17c6ef692a148e1ccecc49dabf115b6e36bcc480 /UPGRADE
parent8bebf49fbfb92f039f56cb22b759d8e84ef19799 (diff)
AR no long adds/updates/deletes automatically.
Diffstat (limited to 'UPGRADE')
-rw-r--r--UPGRADE3
1 files changed, 2 insertions, 1 deletions
diff --git a/UPGRADE b/UPGRADE
index 334f8231..5dc3ff93 100644
--- a/UPGRADE
+++ b/UPGRADE
@@ -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