| Commit message (Expand) | Author | Age | Files | Lines |
* | Document other options available to migration's add_column. #6419 | Marcel Molina | 2006-10-22 | 1 | -1/+2 |
* | MySQL: all_hashes compatibility with old MysqlRes class. Closes #6429. | Jeremy Kemper | 2006-10-20 | 1 | -4/+10 |
* | Fix has_many :through to add the appropriate conditions when going through an... | Rick Olson | 2006-10-16 | 2 | -7/+18 |
* | automatically add primary key to #select_limited_ids_list order by clause for... | Rick Olson | 2006-10-13 | 3 | -0/+11 |
* | fix select_limited_ids_list issues in postgresql, retain current behavior in ... | Rick Olson | 2006-10-13 | 3 | -5/+24 |
* | Restore eager condition interpolation, document it's differences [Rick] | Rick Olson | 2006-10-11 | 1 | -3/+7 |
* | Compare to 0 rather than call zero? to handle nil. | Jeremy Kemper | 2006-10-11 | 1 | -1/+1 |
* | Wrap save! in a transaction. Closes #6324. | Jeremy Kemper | 2006-10-10 | 1 | -2/+6 |
* | improve example in migrations docs, closes #6370 | Jeremy Kemper | 2006-10-09 | 1 | -2/+2 |
* | Don't rollback in teardown unless a transaction was started. Don't start a tr... | Jeremy Kemper | 2006-10-09 | 1 | -4/+4 |
* | Add #delete support to has_many :through associations. Closes #6049 [Martin ... | Rick Olson | 2006-10-09 | 1 | -0/+18 |
* | learn to clean up after myself | Rick Olson | 2006-10-09 | 1 | -4/+0 |
* | Reverted old select_limited_ids_list postgresql fix that caused issues in mys... | Rick Olson | 2006-10-09 | 2 | -3/+6 |
* | Removes the ability for eager loaded conditions to be interpolated, since the... | Rick Olson | 2006-10-09 | 2 | -22/+12 |
* | Fixed rename_table on SQLite tables with indexes defined (closes #5942) [bran... | David Heinemeier Hansson | 2006-10-09 | 1 | -6/+18 |
* | Docfix (closes #6040) | David Heinemeier Hansson | 2006-10-09 | 1 | -0/+24 |
* | Added timeout option to SQLite3 configurations to deal more gracefully with S... | David Heinemeier Hansson | 2006-10-09 | 1 | -0/+3 |
* | Added update_attributes! which uses save! to raise an exception if a validati... | David Heinemeier Hansson | 2006-10-09 | 1 | -0/+6 |
* | Deprecated add_on_boundary_breaking (use validates_length_of instead) (closes... | David Heinemeier Hansson | 2006-10-09 | 1 | -0/+1 |
* | Doc fixes (closes #6325) | David Heinemeier Hansson | 2006-10-09 | 1 | -1/+4 |
* | The has_many create method works with polymorphic associations. Closes #6361. | Jeremy Kemper | 2006-10-08 | 1 | -4/+5 |
* | callbacks that return false should cause save to return false | Jamis Buck | 2006-10-04 | 1 | -2/+2 |
* | MySQL: introduce Mysql::Result#all_hashes to support further optimization. Cl... | Jeremy Kemper | 2006-10-02 | 1 | -10/+41 |
* | save! shouldn't validate twice. Closes #6324. | Jeremy Kemper | 2006-10-02 | 1 | -2/+2 |
* | Association collections have an _ids reader method to match the existing writ... | Jeremy Kemper | 2006-10-01 | 1 | -1/+6 |
* | Add an attribute reader method for ActiveRecord::Base.observers [Rick Olson] | Rick Olson | 2006-09-30 | 1 | -0/+8 |
* | Use class name as XML_TYPE_NAMES key. | Jeremy Kemper | 2006-09-29 | 1 | -2/+2 |
* | Include caller of deprecated count method. | Jeremy Kemper | 2006-09-29 | 1 | -2/+3 |
* | Deprecation: count class method should be called with an options hash rather ... | Jeremy Kemper | 2006-09-26 | 2 | -15/+24 |
* | has_one associations with a nil target may be safely marshaled. Closes #6279. | Jeremy Kemper | 2006-09-26 | 1 | -0/+2 |
* | Duplicate the hash provided to AR::Base#to_xml to prevent unexpected side eff... | Michael Koziarski | 2006-09-24 | 1 | -1/+1 |
* | Add a :namespace option to AR::Base#to_xml [Koz] | Michael Koziarski | 2006-09-17 | 1 | -2/+7 |
* | Version updates and missing licenses | David Heinemeier Hansson | 2006-09-15 | 1 | -1/+1 |
* | Deprecation tests. Remove warnings for dynamic finders and for the foo_count ... | Jeremy Kemper | 2006-09-15 | 5 | -29/+51 |
* | Improve yaml fixtures error reporting. Closes #6205. | Jeremy Kemper | 2006-09-13 | 1 | -13/+16 |
* | We cant make MySQL 5 happy if it means making SQLite and PostgreSQL cry. So c... | David Heinemeier Hansson | 2006-09-08 | 2 | -2/+2 |
* | Added parentheses around FROM clauses generated by Base and associations sinc... | David Heinemeier Hansson | 2006-09-08 | 2 | -2/+2 |
* | Rollback [4917]. Closes #785. | Jeremy Kemper | 2006-09-07 | 1 | -2/+1 |
* | Backed out of new_record? to new? transformation as it would screw up existin... | David Heinemeier Hansson | 2006-09-05 | 14 | -64/+65 |
* | Deprecated ActiveRecord::Base.new_record? in favor of ActiveRecord::Base.new?... | David Heinemeier Hansson | 2006-09-05 | 14 | -65/+64 |
* | Rename quote to quote_value so the name can be used in AR models. #3628 [Koz] | Michael Koziarski | 2006-09-04 | 7 | -22/+35 |
* | Add deprecation warning for inferred foreign key. #6029 [Josh Susser] | Rick Olson | 2006-09-04 | 1 | -0/+6 |
* | Fixed the Ruby/MySQL adapter we ship with Active Record to work with the new ... | David Heinemeier Hansson | 2006-09-04 | 1 | -5/+20 |
* | Deprecation: use :dependent => :delete_all rather than :exclusively_dependent... | Jeremy Kemper | 2006-09-04 | 1 | -1/+1 |
* | Document validates_presences_of behavior with booleans: you probably want val... | Jeremy Kemper | 2006-09-04 | 1 | -0/+4 |
* | Optimistic locking: gracefully handle nil versions, treat as zero. Closes #5908. | Jeremy Kemper | 2006-09-04 | 1 | -0/+17 |
* | Update copyright times | David Heinemeier Hansson | 2006-09-03 | 1 | -1/+1 |
* | validates_confirmation_of only kicks in when the attribute, rather than its c... | Jeremy Kemper | 2006-09-03 | 1 | -1/+2 |
* | to_xml: the :methods option works on arrays of records. Closes #5845. | Jeremy Kemper | 2006-09-02 | 1 | -1/+1 |
* | Deprecation: update docs. Closes #5998. | Jeremy Kemper | 2006-09-01 | 1 | -1/+1 |