aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Expand)AuthorAgeFilesLines
* Fixed documentation snafus #575, #576, #577, #585David Heinemeier Hansson2005-02-0711-31/+31
* Added that the 'fixture :posts' syntax can be used for has_and_belongs_to_man...David Heinemeier Hansson2005-02-071-2/+9
* Added an Oracle adapter that works with the Oracle bindings by Yoshida (http:...David Heinemeier Hansson2005-02-073-21/+266
* Fixed Base#clone for use with PostgreSQL #565 [hanson@surgery.wisc.edu]David Heinemeier Hansson2005-02-071-4/+4
* Updated documentation for serializeDavid Heinemeier Hansson2005-01-251-4/+3
* Added the option of supplying an array of ids and attributes to Base#update, ...David Heinemeier Hansson2005-01-253-59/+36
* Fixed documentation #538David Heinemeier Hansson2005-01-251-1/+1
* The create and build methods are only available for has_one/belongs_to if an ...David Heinemeier Hansson2005-01-251-2/+3
* Added Base.update_collection that can update an array of id/attribute pairs, ...David Heinemeier Hansson2005-01-241-1/+42
* Added ActiveRecord::Base.timestamps_gmt that can be set to true to make the a...David Heinemeier Hansson2005-01-241-7/+12
* Added that update_all calls sanitize_sql on its updates argument, so stuff li...David Heinemeier Hansson2005-01-241-1/+1
* Fixed that the dynamic finders didnt treat nil as a "IS NULL" but rather "= N...David Heinemeier Hansson2005-01-241-1/+3
* Added bind-named arrays for interpolating a group of ids or strings in condit...David Heinemeier Hansson2005-01-241-3/+12
* Added that has_and_belongs_to_many associations with additional attributes al...David Heinemeier Hansson2005-01-242-18/+31
* Fixed that records fetched with piggy-back attributes or through rich has_and...David Heinemeier Hansson2005-01-241-1/+2
* Added mass-assignment protection for the inheritance column -- regardless of ...David Heinemeier Hansson2005-01-231-3/+8
* Fixed that association proxies would fail === tests like PremiumSubscription ...David Heinemeier Hansson2005-01-231-0/+5
* Replaced === checks with is_a? checks #502, #82 [Marcel Molina]David Heinemeier Hansson2005-01-204-7/+7
* Fixed that column aliases didn't work as expected with the new MySql411 drive...David Heinemeier Hansson2005-01-201-1/+1
* Fixed that find_all would produce invalid sql when called sequentialy #490 [S...David Heinemeier Hansson2005-01-201-1/+1
* Cleanup the proxy rollback #492David Heinemeier Hansson2005-01-181-14/+6
* Fixed that the belongs_to and has_one proxy would fail a test like 'if projec...David Heinemeier Hansson2005-01-185-27/+57
* Fixed that the Ruby/MySQL adapter wouldn't connect if the password was empty ...David Heinemeier Hansson2005-01-181-1/+2
* Made human_attribute_name(attribute_key_name) use Inflector.humanizeDavid Heinemeier Hansson2005-01-171-1/+1
* Make sure #470 shouldnt be happeningDavid Heinemeier Hansson2005-01-171-13/+0
* Only remember that an association was loaded if it was foundDavid Heinemeier Hansson2005-01-171-1/+1
* belongs_to association should always honor a present foreign key and conditio...David Heinemeier Hansson2005-01-173-23/+33
* New adventures in dependency reloadingDavid Heinemeier Hansson2005-01-161-1/+1
* Added validates_associated that enables validation of objects in an unsaved a...David Heinemeier Hansson2005-01-151-0/+33
* Added support for associating unsaved objects #402 [Tim Bates]David Heinemeier Hansson2005-01-1510-284/+502
* Added a bit more documentation on how to use the instance methods for acts_as...David Heinemeier Hansson2005-01-151-11/+14
* Fixed binary support for PostgreSQL #444 [alex@byzantine.no]David Heinemeier Hansson2005-01-151-1/+29
* Removed silly change caused by inability to grok own code at 3 amDavid Heinemeier Hansson2005-01-141-8/+8
* Changed add_to_list_top and add_to_list_bottom to be publicDavid Heinemeier Hansson2005-01-141-10/+10
* Refactored ActiveRecord::Base#clone to use Base#attributes #463 [atyp]David Heinemeier Hansson2005-01-131-11/+1
* Remove length alias of sizeDavid Heinemeier Hansson2005-01-111-2/+0
* Added a differenciation between AssociationCollection#size and -length. Now A...David Heinemeier Hansson2005-01-111-1/+10
* Fixed the 4.11 changes to the mysql adapterDavid Heinemeier Hansson2005-01-112-1/+1
* Added Base#attributes that returns a hash of all the attributes with their na...David Heinemeier Hansson2005-01-111-0/+12
* Fixed that foreign keys named the same as the association would cause stack o...David Heinemeier Hansson2005-01-111-2/+2
* Fixed default scope of acts_as_list from "1" to "1 = 1", so itll work in Post...David Heinemeier Hansson2005-01-111-1/+1
* Added Base#reload that reloads the attributes of an object from the database ...David Heinemeier Hansson2005-01-101-1/+8
* Added SQLite3 compatibility through the sqlite3-ruby adapter by Jamis Buck #3...David Heinemeier Hansson2005-01-103-84/+106
* Added support for the new protocol spoken by MySQL 4.1.1+ servers for the Rub...David Heinemeier Hansson2005-01-102-0/+319
* Added that Observers can use the observes class method instead of overwriting...David Heinemeier Hansson2005-01-101-1/+5
* Added time unit extensions to Fixnum that'll return the period in seconds, li...David Heinemeier Hansson2005-01-101-0/+1
* Fixed that conditions in has_many and has_and_belongs_to_many should be inter...David Heinemeier Hansson2005-01-072-2/+2
* Fixed Base#update_attribute to be indifferent to whether a string or symbol i...David Heinemeier Hansson2005-01-062-2/+2
* Added Base#toggle(attribute) and Base#toggle!(attribute) that makes it easier...David Heinemeier Hansson2005-01-061-6/+41
* Minor tweak for readabilityDavid Heinemeier Hansson2005-01-041-1/+1