Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Destroy respects optimistic locking. | Curtis Hawthorne | 2010-04-27 | 1 | -0/+2 | |
| | | | | | | | | | | Now works with :dependent => :destroy and includes unit tests for that case. Also includes better error messages when updating/deleting stale objects. [#1966 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Drop support for postgres driver. Use pg >= 0.9.0. | Jeremy Kemper | 2010-04-24 | 1 | -0/+2 | |
| | ||||||
* | improve how ActiveRecord::Observer defines callbacks on observed models | Mislav Marohnić | 2010-04-16 | 1 | -0/+5 | |
| | | | | | | | | | | | | | | | | | | Instead of using a single `notify_observers` call for every callback type, each observer now registers a unique callback for itself. Example: before_save :_notify_user_observer_for_before_save def _notify_user_observer_for_before_save observer.update(:before_save, self) end Benefit: "before" callbacks halt when `observer.update` returns false. This way, ActiveRecord observers can prevent records from saving. [#4087 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Update changelogs for release | David Heinemeier Hansson | 2010-04-13 | 1 | -1/+1 | |
| | ||||||
* | Add Relation extensions | Pratik Naik | 2010-04-02 | 1 | -0/+10 | |
| | ||||||
* | Add missed changelog for table_name_prefix | Jeremy Kemper | 2010-03-29 | 1 | -2/+4 | |
| | ||||||
* | Silenced "SHOW FIELDS" and "SET SQL_AUTO_IS_NULL=0" statements from the ↵ | David Heinemeier Hansson | 2010-02-06 | 1 | -0/+5 | |
| | | | | MySQL driver to improve log signal to noise ration in development [DHH] | |||||
* | PostgreSQLAdapter: set time_zone to UTC when Base.default_timezone == :utc ↵ | Jack Christensen | 2010-01-25 | 1 | -0/+2 | |
| | | | | so that Postgres doesn't incorrectly offset-adjust values inserted into TIMESTAMP WITH TIME ZONE columns [#3777 state:resolved] | |||||
* | Add missing CHANGELOG entry about relations as scopes | Pratik Naik | 2010-01-18 | 1 | -0/+8 | |
| | ||||||
* | Rename named_scope to scope | Pratik Naik | 2010-01-18 | 1 | -0/+2 | |
| | ||||||
* | Merge | David Heinemeier Hansson | 2010-01-03 | 1 | -0/+5 | |
|\ | ||||||
| * | Add Relation#except | Pratik Naik | 2010-01-03 | 1 | -0/+5 | |
| | | ||||||
* | | Changed ActiveRecord::Base.store_full_sti_class to be true by default ↵ | David Heinemeier Hansson | 2010-01-03 | 1 | -0/+2 | |
|/ | | | | reflecting the previously announced Rails 3 default [DHH] | |||||
* | Add Relation#delete_all | Pratik Naik | 2009-12-29 | 1 | -0/+4 | |
| | ||||||
* | 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 ↵ | Gabe da Silveira | 2009-12-03 | 1 | -1/+1 | |
| | | | | | | | | existing update_counters method [#1211 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Add support for Mysql column positioning via #add_column and #change_column | Ben Marini | 2009-12-03 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | add_column and change_column in the Mysql adapter now accept some additional options: :first => true # Put the column in front of all the columns :after => column_name # Put the colmn after 'column_name' add_column :new_col, :string, :first => true add_column :another_col, :integer, :default => 0, :after => :new_col [#3286 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Implement ActiveRecord#reset_counter_cache | Mike Breen | 2009-12-02 | 1 | -0/+2 | |
| | | | | | | [#1211 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Remove support for SQLite 2. | Pratik Naik | 2009-08-17 | 1 | -0/+2 | |
| | | | | If you're still using it, please install the plugin from git://github.com/rails/sqlite2_adapter.git | |||||
* | Fixed typo in test name and CHANGELOG [#3017 state:resolved] | Arthur Zapparoli | 2009-08-10 | 1 | -2/+2 | |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | |||||
* | PostgreSQL: XML datatype support | Leonardo Borges | 2009-08-09 | 1 | -0/+2 | |
| | | | | | | [#1874 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Revert "fallback_string_to_date sets Date._parse comp arg to true, so that ↵ | Geoff Buesing | 2009-08-05 | 1 | -2/+0 | |
| | | | | | | strings with two-digit years, e.g. '1/1/09', are interpreted as modern years" [#2019 state:wontfix] This reverts commit 55d1d12c32a1b99f3f07d2346b49a63650ba2e9d. | |||||
* | fallback_string_to_date sets Date._parse comp arg to true, so that strings ↵ | Matt Ganderup | 2009-08-03 | 1 | -0/+2 | |
| | | | | with two-digit years, e.g. '1/1/09', are interpreted as modern years [#2019 state:resolved] | |||||
* | quoted_date converts time-like objects to ↵ | Geoff Buesing | 2009-08-03 | 1 | -0/+2 | |
| | | | | ActiveRecord::Base.default_timezone before serialization. This allows you to use Time.now in find conditions and have it correctly be serialized as the current time in UTC when default_timezone == :utc [#2946 state:resolved] | |||||
* | 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 | |
| | | | | | | [#765 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Implement #many? for NamedScope and AssociationCollection using #size [#1500 ↵ | Chris Kampmeier | 2009-05-17 | 1 | -0/+2 | |
| | | | | | | state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | |||||
* | Added :touch option to belongs_to associations that will touch the parent ↵ | David Heinemeier Hansson | 2009-04-16 | 1 | -1/+3 | |
| | | | | record when the current record is saved or destroyed [DHH] | |||||
* | Added ActiveRecord::Base#touch to update the updated_at/on attributes with ↵ | David Heinemeier Hansson | 2009-04-16 | 1 | -0/+5 | |
| | | | | the current time [DHH] | |||||
* | 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 ↵ | David Heinemeier Hansson | 2009-02-28 | 1 | -1/+1 | |
| | | | | ironed out | |||||
* | 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 ↵ | David Heinemeier Hansson | 2009-02-23 | 1 | -0/+2 | |
| | | | | batch processing [DHH/Jamis Buck] | |||||
* | Add ActiveRecord::Base.exists? with no args [#1817 state:committed] | Scott Taylor | 2009-02-05 | 1 | -0/+5 | |
| | | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | |||||
* | 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 ↵ | Eloy Duran | 2009-02-01 | 1 | -0/+9 | |
| | | | | | | | | ActionPack Signed-Off-By: Michael Koziarski <michael@koziarski.com> [#1202 state:committed] |