diff options
-rw-r--r-- | activerecord/CHANGELOG | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 151333bbb9..0aac9bc6c0 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -13,6 +13,11 @@ end Post.find(1).comments.search('hi') # => SELECT * from comments WHERE post_id = 1 AND body = 'hi' + + NOTICE: This patch changes the underlying SQL generated by has_and_belongs_to_many queries. If your relying on that, such as + by explicitly referencing the old t and j aliases, you'll need to update your code. Of course, you _shouldn't_ be relying on + details like that no less than you should be diving in to touch private variables. But just in case you do, consider yourself + noticed :) * Added migration support for SQLite (using temporary tables to simulate ALTER TABLE) #1771 [Sam Stephenson] |