| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add Model.having and Relation#having | Pratik Naik | 2009-12-29 | 1 | -0/+4 |
* | Add Relation#count | Pratik Naik | 2009-12-28 | 1 | -0/+7 |
* | Add Model.readonly and association_collection#readonly finder method | Pratik Naik | 2009-12-28 | 1 | -0/+5 |
* | Fix a typo in CHANGELOG | Pratik Naik | 2009-12-28 | 1 | -1/+1 |
* | Add Model.lock and relation#lock now that arel has locking | Pratik Naik | 2009-12-28 | 1 | -0/+7 |
* | Add Model.from and association_collection#from finder methods | Pratik Naik | 2009-12-28 | 1 | -0/+5 |
* | Add relation.destroy_all | Pratik Naik | 2009-12-27 | 1 | -0/+5 |
* | Add relation.exists? | Pratik Naik | 2009-12-27 | 1 | -0/+6 |
* | Add find(ids) to relations | Pratik Naik | 2009-12-27 | 1 | -0/+6 |
* | Add new finder methods to association collection. | Pratik Naik | 2009-12-27 | 1 | -0/+10 |
* | Add relation.reload to force reloading the records | Pratik Naik | 2009-12-26 | 1 | -0/+8 |
* | Add missing changelog entries | Pratik Naik | 2009-12-26 | 1 | -0/+25 |
* | Missed changelog entry for :inverse_of | Jeremy Kemper | 2009-12-21 | 1 | -0/+7 |
* | Replace reset_counter_cache with reset_counters that has API inline with exis... | Gabe da Silveira | 2009-12-03 | 1 | -1/+1 |
* | Add support for Mysql column positioning via #add_column and #change_column | Ben Marini | 2009-12-03 | 1 | -0/+2 |
* | Implement ActiveRecord#reset_counter_cache | Mike Breen | 2009-12-02 | 1 | -0/+2 |
* | Remove support for SQLite 2. | Pratik Naik | 2009-08-17 | 1 | -0/+2 |
* | Fixed typo in test name and CHANGELOG [#3017 state:resolved] | Arthur Zapparoli | 2009-08-10 | 1 | -2/+2 |
* | PostgreSQL: XML datatype support | Leonardo Borges | 2009-08-09 | 1 | -0/+2 |
* | Revert "fallback_string_to_date sets Date._parse comp arg to true, so that st... | Geoff Buesing | 2009-08-05 | 1 | -2/+0 |
* | fallback_string_to_date sets Date._parse comp arg to true, so that strings wi... | Matt Ganderup | 2009-08-03 | 1 | -0/+2 |
* | quoted_date converts time-like objects to ActiveRecord::Base.default_timezone... | Geoff Buesing | 2009-08-03 | 1 | -0/+2 |
* | SQLite: drop support for 'dbfile' option in favor of 'database.' | Jeremy Kemper | 2009-08-01 | 1 | -0/+2 |
* | Add primary_key option to belongs_to association | Szymon Nowak | 2009-07-15 | 1 | -0/+4 |
* | Implement #many? for NamedScope and AssociationCollection using #size [#1500 ... | Chris Kampmeier | 2009-05-17 | 1 | -0/+2 |
* | Added :touch option to belongs_to associations that will touch the parent rec... | David Heinemeier Hansson | 2009-04-16 | 1 | -1/+3 |
* | Added ActiveRecord::Base#touch to update the updated_at/on attributes with th... | David Heinemeier Hansson | 2009-04-16 | 1 | -0/+5 |
* | Prepare for final 2.3 release | David Heinemeier Hansson | 2009-03-15 | 1 | -3/+1 |
* | Rename ActiveRecord::Base.each to ActiveRecord::Base.find_each | Pratik Naik | 2009-03-11 | 1 | -2/+1 |
* | Release RC2 today | David Heinemeier Hansson | 2009-03-05 | 1 | -1/+1 |
* | So it didnt happen yesterday, but very soon! Just need the final details iron... | David Heinemeier Hansson | 2009-02-28 | 1 | -1/+1 |
* | Prep for RC2 later today | David Heinemeier Hansson | 2009-02-27 | 1 | -1/+1 |
* | Added ActiveRecord::Base.each and ActiveRecord::Base.find_in_batches for batc... | David Heinemeier Hansson | 2009-02-23 | 1 | -0/+2 |
* | Add ActiveRecord::Base.exists? with no args [#1817 state:committed] | Scott Taylor | 2009-02-05 | 1 | -0/+5 |
* | Mark CHANGELOGs for release | David Heinemeier Hansson | 2009-02-01 | 1 | -1/+1 |
* | Add support for nested object forms to ActiveRecord and the helpers in Action... | Eloy Duran | 2009-02-01 | 1 | -0/+9 |
* | Merge docrails | Pratik Naik | 2009-01-18 | 1 | -2/+2 |
* | Fixed broken after_save callback; was being called when before_create was can... | Michael Lovitt | 2009-01-16 | 1 | -0/+4 |
* | Introduce transaction_joinable flag to mark that the fixtures transaction can... | Jeremy Kemper | 2009-01-10 | 1 | -0/+2 |
* | Introduce dynamic scopes for ActiveRecord: you can now use class methods like... | Yaroslav Markin | 2008-12-28 | 1 | -0/+2 |
* | ActiveRecord::Base#new_record? now returns false for existing records (was ni... | Yaroslav Markin | 2008-12-27 | 1 | -0/+2 |
* | normalize author names in changelogs [#1495 state:committed] | Xavier Noria | 2008-12-16 | 1 | -392/+392 |
* | Changelog entry for #1294 | Jeremy Kemper | 2008-12-08 | 1 | -0/+2 |
* | Add :having option to find, to use in combination with grouped finds. Also ad... | miloops | 2008-12-01 | 1 | -0/+2 |
* | Added default_scope to Base [#1381 state:committed] (Paweł Kondzior) | Pratik Naik | 2008-11-16 | 1 | -0/+16 |
* | Revert "Added default_scope to Base [#1381 state:committed] (Paweł Kondzior)... | David Heinemeier Hansson | 2008-11-16 | 1 | -16/+0 |
* | Added default_scope to Base [#1381 state:committed] (Paweł Kondzior) | David Heinemeier Hansson | 2008-11-16 | 1 | -0/+16 |
* | Prepare for RC2 | David Heinemeier Hansson | 2008-11-14 | 1 | -1/+1 |
* | Revert commit which breaks all the tests. | Michael Koziarski | 2008-11-07 | 1 | -2/+0 |
* | Fixed the sanitize helper to avoid double escaping already properly escaped e... | David Heinemeier Hansson | 2008-11-06 | 1 | -1/+1 |