aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
Commit message (Expand)AuthorAgeFilesLines
* 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-102-83/+105
* 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
* 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
* Fixed some thread safety issues with DB2David Heinemeier Hansson2005-01-041-20/+23
* Fixed #406 for realDavid Heinemeier Hansson2005-01-041-2/+2
* Fixed that validates_uniqueness_of used 'id' instead of defined primary key #406David Heinemeier Hansson2005-01-041-2/+2
* Fixed that the overwritten respond_to? method didn't take two parameters like...David Heinemeier Hansson2005-01-031-2/+2
* Fixed that the overwritten respond_to? method didn't take two parameters like...David Heinemeier Hansson2005-01-031-2/+2
* Fixed the last details to please DB2David Heinemeier Hansson2005-01-031-1/+1
* Added HasManyAssociation#count that works like Base#count #413 [intinig]David Heinemeier Hansson2005-01-021-0/+11
* Added the possibility of specifying the remaining options for find_first and ...David Heinemeier Hansson2005-01-021-8/+11
* DB2 driver shouldnt be looking for RubyGems stuffDavid Heinemeier Hansson2005-01-021-1/+0
* git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@312 5ecf4fe2-1ee6-0...David Heinemeier Hansson2005-01-021-34/+0
* Fixed handling of binary content in blobs and similar fields for Ruby/MySQL a...David Heinemeier Hansson2005-01-022-4/+43
* Added find_all style to the new dynamic findersDavid Heinemeier Hansson2005-01-021-4/+9
* Added dynamic attribute-based finders as a cleaner way of getting objects by ...David Heinemeier Hansson2005-01-021-0/+25
* Restored bind arity checking #412 [bitsweat]David Heinemeier Hansson2005-01-021-7/+8
* Added that Base#find takes an optional options hash, including :conditions. B...David Heinemeier Hansson2005-01-014-120/+161
* Added a db2 adapter that only depends on the Ruby/DB2 bindings (http://raa.ru...David Heinemeier Hansson2005-01-015-5/+489
* Added the final touches to the Microsoft SQL Server adapter by DeLynn Berry t...David Heinemeier Hansson2005-01-011-9/+40
* Fixed a bug in the Ruby/MySQL that caused binary content to be escaped badly ...David Heinemeier Hansson2005-01-011-1/+1
* Updated documentation for associations #387 [canadaduane]David Heinemeier Hansson2005-01-011-7/+10
* Added block-style for callbacks #332 [bitsweat]David Heinemeier Hansson2005-01-011-50/+51
* Added automated optimistic locking if the field lock_version is present #384 ...David Heinemeier Hansson2004-12-312-0/+59
* Added :counter_cache option to acts_as_tree that works just like the one you ...David Heinemeier Hansson2004-12-311-2/+3
* Fixed quoting in validates_format_of that would allow some rules to pass rega...David Heinemeier Hansson2004-12-311-1/+1
* Restored thread safety to Active Record [andreas]David Heinemeier Hansson2004-12-301-10/+16
* Transactions are now actually working on the database level on save, but thre...David Heinemeier Hansson2004-12-301-1/+2
* Switch dispatcher to use the new shared Dependencies approachDavid Heinemeier Hansson2004-12-291-9/+0
* Moved support into Active SupportDavid Heinemeier Hansson2004-12-299-885/+57
* Added Base.default_timezone accessor that determines whether to use Time.loca...David Heinemeier Hansson2004-12-282-10/+15
* Fixed that the const_missing autoload assumes the requested constant is set b...David Heinemeier Hansson2004-12-281-1/+1
* Added the possibility for adapters to overwrite add_limit! to implement a dif...David Heinemeier Hansson2004-12-283-88/+53
* Added scope option to validation_uniqueness #349 [Kent Sibilev]David Heinemeier Hansson2004-12-221-2/+7
* Added allow_nil options to validates_inclusion_of so that validation is only ...David Heinemeier Hansson2004-12-221-1/+7
* Added work-around for PostgreSQL and the problem of getting fixtures to be cr...David Heinemeier Hansson2004-12-221-0/+18
* Added Base#clear_association_cache to empty all the cached associations #347 ...David Heinemeier Hansson2004-12-221-0/+7
* Added more informative exceptions in establish_connection #356 [bitsweat]David Heinemeier Hansson2004-12-221-4/+3
* Fixed that options[:counter_sql] was overwritten with interpolated sql rather...David Heinemeier Hansson2004-12-221-1/+2
* Fixed that overriding an attribute's accessor would be disregarded by add_on_...David Heinemeier Hansson2004-12-221-4/+9
* Fixed that Base.table_name would expect a parameter when used in has_and_belo...David Heinemeier Hansson2004-12-222-8/+3
* Fixed that nested transactions now work by letting the outer most transaction...David Heinemeier Hansson2004-12-222-17/+15
* Fixed validates_{confirmation,acceptance}_of to only happen when the virtual ...David Heinemeier Hansson2004-12-211-4/+6