aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
Commit message (Expand)AuthorAgeFilesLines
* Fixed documentation snafus #575, #576, #577, #585David Heinemeier Hansson2005-02-073-24/+24
* Added an Oracle adapter that works with the Oracle bindings by Yoshida (http:...David Heinemeier Hansson2005-02-0712-11/+269
* Dont call id explicitly to do reloading that way we get rid of the warnings #...David Heinemeier Hansson2005-02-072-11/+11
* Fixed Base#clone for use with PostgreSQL #565 [hanson@surgery.wisc.edu]David Heinemeier Hansson2005-02-071-0/+4
* Updated documentation for serializeDavid Heinemeier Hansson2005-01-251-2/+0
* Updated documentation for serializeDavid Heinemeier Hansson2005-01-251-0/+2
* Fixed dependency reloading by switching to a remove_const approach where all ...David Heinemeier Hansson2005-01-252-2/+16
* Added the option of supplying an array of ids and attributes to Base#update, ...David Heinemeier Hansson2005-01-252-14/+35
* Added Base.update_collection that can update an array of id/attribute pairs, ...David Heinemeier Hansson2005-01-241-0/+17
* Added that update_all calls sanitize_sql on its updates argument, so stuff li...David Heinemeier Hansson2005-01-241-0/+3
* Fixed that the dynamic finders didnt treat nil as a "IS NULL" but rather "= N...David Heinemeier Hansson2005-01-241-0/+23
* Added bind-named arrays for interpolating a group of ids or strings in condit...David Heinemeier Hansson2005-01-241-1/+9
* Added that has_and_belongs_to_many associations with additional attributes al...David Heinemeier Hansson2005-01-241-0/+21
* Fixed that records fetched with piggy-back attributes or through rich has_and...David Heinemeier Hansson2005-01-241-1/+20
* Added mass-assignment protection for the inheritance column -- regardless of ...David Heinemeier Hansson2005-01-231-0/+7
* Fixed that association proxies would fail === tests like PremiumSubscription ...David Heinemeier Hansson2005-01-231-0/+4
* A few missing filesDavid Heinemeier Hansson2005-01-201-0/+12
* Fixed that the belongs_to and has_one proxy would fail a test like 'if projec...David Heinemeier Hansson2005-01-181-5/+22
* Added test_forgetting_the_load_when_foreign_key_enters_lateDavid Heinemeier Hansson2005-01-171-0/+8
* Test for #489David Heinemeier Hansson2005-01-171-1/+8
* Fixed that unit tests for MySQL are now run as the "rails" user instead of ro...David Heinemeier Hansson2005-01-151-2/+2
* Added validates_associated that enables validation of objects in an unsaved a...David Heinemeier Hansson2005-01-151-0/+21
* Added support for associating unsaved objects #402 [Tim Bates]David Heinemeier Hansson2005-01-154-23/+265
* git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@388 5ecf4fe2-1ee6-0...David Heinemeier Hansson2005-01-112-0/+6
* Added Base#attributes that returns a hash of all the attributes with their na...David Heinemeier Hansson2005-01-111-1/+6
* Fixed that foreign keys named the same as the association would cause stack o...David Heinemeier Hansson2005-01-116-2/+32
* Added Base#reload that reloads the attributes of an object from the database ...David Heinemeier Hansson2005-01-101-1/+10
* Added SQLite3 compatibility through the sqlite3-ruby adapter by Jamis Buck #3...David Heinemeier Hansson2005-01-102-1/+35
* Added inclusion of fix for test/unit and rake problems with Ruby 1.8.2David Heinemeier Hansson2005-01-101-1/+0
* Fixed Base#update_attribute to be indifferent to whether a string or symbol i...David Heinemeier Hansson2005-01-061-0/+3
* Added Base#toggle(attribute) and Base#toggle!(attribute) that makes it easier...David Heinemeier Hansson2005-01-061-1/+33
* Fixed the last details to please DB2David Heinemeier Hansson2005-01-032-3/+9
* Fixed a YAML fixture on time coming out as an integer #415 [Dan Peterson]David Heinemeier Hansson2005-01-021-1/+1
* Added HasManyAssociation#count that works like Base#count #413 [intinig]David Heinemeier Hansson2005-01-021-0/+4
* Added find_all style to the new dynamic findersDavid Heinemeier Hansson2005-01-022-1/+9
* Added dynamic attribute-based finders as a cleaner way of getting objects by ...David Heinemeier Hansson2005-01-021-12/+22
* Restored bind arity checking #412 [bitsweat]David Heinemeier Hansson2005-01-021-2/+4
* Added that Base#find takes an optional options hash, including :conditions. B...David Heinemeier Hansson2005-01-013-14/+83
* Added the latest two tables to the DB2 schemasDavid Heinemeier Hansson2005-01-011-0/+12
* Added a db2 adapter that only depends on the Ruby/DB2 bindings (http://raa.ru...David Heinemeier Hansson2005-01-0128-65/+241
* Added the final touches to the Microsoft SQL Server adapter by DeLynn Berry t...David Heinemeier Hansson2005-01-011-3/+9
* Fixed a bug in the Ruby/MySQL that caused binary content to be escaped badly ...David Heinemeier Hansson2005-01-017-2/+65
* Added block-style for callbacks #332 [bitsweat]David Heinemeier Hansson2005-01-011-0/+230
* Added automated optimistic locking if the field lock_version is present #384 ...David Heinemeier Hansson2004-12-317-1/+62
* Added tests for acts_as_list with scope is null #378 [Tim Bates]David Heinemeier Hansson2004-12-311-0/+6
* Fixed quoting in validates_format_of that would allow some rules to pass rega...David Heinemeier Hansson2004-12-311-1/+1
* Rearranging dependenciesDavid Heinemeier Hansson2004-12-291-122/+0
* Added Base.default_timezone accessor that determines whether to use Time.loca...David Heinemeier Hansson2004-12-281-1/+10
* Added scope option to validation_uniqueness #349 [Kent Sibilev]David Heinemeier Hansson2004-12-221-0/+19
* Added allow_nil options to validates_inclusion_of so that validation is only ...David Heinemeier Hansson2004-12-221-0/+8