aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
Commit message (Expand)AuthorAgeFilesLines
* Docfix (closes #8096)David Heinemeier Hansson2007-06-231-3/+15
* Docfix (closes #8674)David Heinemeier Hansson2007-06-231-2/+2
* Remove deprecated quote methods, replaced by quote_value so quote can be used...Jeremy Kemper2007-06-111-12/+0
* Remove deprecated find_first and find_all.Jeremy Kemper2007-06-111-9/+2
* Fix Base#inspect when not every attribute is present. Closes #8623.Jeremy Kemper2007-06-111-3/+4
* Base.inspect handles Base itself and abstract_class? Don't use #<Foo ...> si...Jeremy Kemper2007-05-311-2/+9
* Fix an edge case with find with a list of ids, limit, and offset. Closes #8437.Jeremy Kemper2007-05-311-4/+6
* with_scope is protected. Closes #8524.Jeremy Kemper2007-05-301-85/+97
* Raise an exception if both attr_protected and attr_accessible are declared. C...Jeremy Kemper2007-05-291-0/+2
* Allow nil serialized attributes with a set class constraint. #7293 [sandofsky]Rick Olson2007-05-281-2/+2
* find gracefully copes with blank :conditions. Closes #7599.Jeremy Kemper2007-05-261-3/+3
* Find with a list of ids supports limit/offset. Closes #8437.Jeremy Kemper2007-05-251-2/+13
* Call the newly generated read method after generating it. Closes #8470.Jeremy Kemper2007-05-251-4/+15
* Fix #inspect for new records. Closes #8405.Jeremy Kemper2007-05-191-1/+1
* Clarify :offset docs. Closes #3733.Jeremy Kemper2007-05-181-1/+1
* Pay tribute to timezones. Tune #inspect style.Jeremy Kemper2007-05-181-7/+9
* Sanitize Base#inspect. Closes #8392.Jeremy Kemper2007-05-181-1/+20
* Replace the transaction {|transaction|..} semantics with a new Exception Acti...Michael Koziarski2007-05-181-0/+2
* Add documentation caveat about when to use count_by_sql. Closes #8090. [fearo...Marcel Molina2007-05-061-0/+9
* Also add documentation enhancements for increment_counter. Closes #8092. [fea...Marcel Molina2007-05-061-5/+15
* Enhance documentation for decrement_counter. Closes #8093. [fearoffish]Marcel Molina2007-05-061-1/+13
* Improved performance by relying less on exception raising #8159 [Blaine]David Heinemeier Hansson2007-04-241-1/+7
* Added ActiveRecord::Base.inspect to return a column-view like #<Post id:integ...David Heinemeier Hansson2007-04-211-0/+5
* documentation project patches, closes #7342, #7319, #7316, #7190 [jeremymcana...Rick Olson2007-03-271-0/+3
* Base.update_all :order and :limit options. Useful for MySQL updates that must...Jeremy Kemper2007-03-171-2/+8
* find_or_create_by_* takes a hash so you can create with more attributes than ...Jeremy Kemper2007-03-141-2/+14
* Make sure with_scope takes both :select and :joins into account when setting ...Michael Koziarski2007-03-131-1/+1
* Consistently quote primary key column names. Closes #7763.Jeremy Kemper2007-03-091-7/+7
* Note that find results may not be in the same order as the id arguments. Clos...Jeremy Kemper2007-03-061-0/+4
* Made increment_counter/decrement_counter play nicely with optimistic locking,...Jamis Buck2007-02-071-2/+21
* update_all can take a Hash argument. sanitize_sql splits into two methods for...Jeremy Kemper2007-01-281-6/+28
* Don't create instance writer methods for class attributes. Closes #7401 [Rick]Rick Olson2007-01-281-11/+11
* Remove useless code in #attribute_present? since 0 != blank?. Closes #7249 [...Rick Olson2007-01-231-1/+1
* Subclasses of an abstract class work with single-table inheritance. Reference...Jeremy Kemper2007-01-231-2/+7
* Apply scoping during initialize instead of create. Fixes setting of foreign ...Tobias Lütke2007-01-121-1/+1
* Fix scope typo in add_lock! Closes #6482. [zubek]Jeremy Kemper2007-01-121-1/+1
* Pass a range in :conditions to use the SQL BETWEEN operator. Closes #6974.Jeremy Kemper2007-01-101-2/+15
* try to appease the angry OracleJamis Buck2006-12-291-1/+1
* make sure query attributes on custom fields works as it used toJamis Buck2006-12-291-1/+7
* Docs fix for columns_hash [bradediger]Michael Koziarski2006-12-271-1/+1
* Ensure dynamic finders are anchored to the beginning of the method name to pr...Michael Koziarski2006-12-271-2/+2
* Partially revert [5660] - makes more trouble than it resolves. References #57...Jeremy Kemper2006-12-191-5/+2
* Subclass instantiation doesn't try to explicitly require the corresponding su...Jeremy Kemper2006-12-191-5/+3
* Subclasses of an abstract class work with single-table inheritance. Closes #5...Jeremy Kemper2006-12-011-3/+6
* Simplify query_attribute by typecasting the attribute value and checking whet...Jeremy Kemper2006-11-201-15/+7
* Cache inheritance_column. Closes #6592.Jeremy Kemper2006-11-091-4/+5
* make add_order a tad faster (Closes #6567)Jamis Buck2006-11-071-4/+6
* Support nil and Array in :conditions => { attr => value } hashes. Closes #6548.Jeremy Kemper2006-11-051-31/+33
* Dynamically generate reader methods for serialized attributes. Closes #6362.Jeremy Kemper2006-11-021-3/+19
* update deprecations to include alternative methods (where available)Jamis Buck2006-10-241-2/+2