aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
Commit message (Expand)AuthorAgeFilesLines
* Fixed mixin test and fixtures to work with postgresql #353 [Scott Baron]David Heinemeier Hansson2004-12-222-10/+14
* Added Base#clear_association_cache to empty all the cached associations #347 ...David Heinemeier Hansson2004-12-222-0/+9
* Added more informative exceptions in establish_connection #356 [bitsweat]David Heinemeier Hansson2004-12-222-4/+5
* Fixed that options[:counter_sql] was overwritten with interpolated sql rather...David Heinemeier Hansson2004-12-222-1/+4
* Fixed that overriding an attribute's accessor would be disregarded by add_on_...David Heinemeier Hansson2004-12-222-4/+12
* Fixed that Base.table_name would expect a parameter when used in has_and_belo...David Heinemeier Hansson2004-12-223-8/+5
* Fixed that nested transactions now work by letting the outer most transaction...David Heinemeier Hansson2004-12-224-18/+20
* Fixed validates_{confirmation,acceptance}_of to only happen when the virtual ...David Heinemeier Hansson2004-12-213-8/+26
* Added acts instead of mixinsDavid Heinemeier Hansson2004-12-211-2/+2
* Deal with associated classes that doesnt reside in their own filesDavid Heinemeier Hansson2004-12-201-1/+7
* Checked in the proper version of const_missingDavid Heinemeier Hansson2004-12-201-17/+17
* Forgot a "or" in InflectorDavid Heinemeier Hansson2004-12-201-1/+1
* Switched strategy on the id_before_type_cast problem and just did an explicit...David Heinemeier Hansson2004-12-201-1/+5
* Added a require_association hook on const_missing that makes it possible to u...David Heinemeier Hansson2004-12-202-2/+40
* Pulling attributes_from_column_definition should set the primary id to nil in...David Heinemeier Hansson2004-12-191-1/+1
* Scrap thatDavid Heinemeier Hansson2004-12-191-1/+0
* Dont define respond_to? lookups for primary keyDavid Heinemeier Hansson2004-12-191-0/+1
* FormHelper should only use *_before_type_cast if they available on the modelDavid Heinemeier Hansson2004-12-191-0/+1
* Changed the interface on AbstractAdapter to require that adapters return the ...David Heinemeier Hansson2004-12-198-14/+39
* Added that query benchmarking will only happen if its going to be logged anyw...David Heinemeier Hansson2004-12-192-1/+3
* Reworded a few doc things for better comprehension [dblack]David Heinemeier Hansson2004-12-191-3/+3
* Fixed small doc bug [dblack]David Heinemeier Hansson2004-12-191-1/+1
* Added higher_item and lower_item as public methods for acts_as_list #342 [Tob...David Heinemeier Hansson2004-12-199-81/+200
* Added breakpoints to stand-alone Active Record, so we can use them in tests f...David Heinemeier Hansson2004-12-192-0/+606
* Set a high default salary within the validation rangeDavid Heinemeier Hansson2004-12-195-5/+5
* Added Developer#salary for the type testsDavid Heinemeier Hansson2004-12-195-2/+5
* Added respondence to *_before_type_cast for all attributes to return their st...David Heinemeier Hansson2004-12-196-14/+32
* Fixed the automated timestamping feature when running under Rails' developmen...David Heinemeier Hansson2004-12-183-6/+20
* Base#update_attribute isnt subject to validationDavid Heinemeier Hansson2004-12-182-4/+5
* Made Base#update_attributes actually workDavid Heinemeier Hansson2004-12-181-1/+1
* Added Base#update_attributes that'll accept a hash of attributes and save the...David Heinemeier Hansson2004-12-172-1/+18
* Added Base.destroy and Base.delete to remove records without holding a refere...David Heinemeier Hansson2004-12-173-7/+38
* Rails 0.9 is a realityDavid Heinemeier Hansson2004-12-162-2/+2
* Made the last tweaks before 0.9David Heinemeier Hansson2004-12-162-60/+60
* Updated and added more documentationDavid Heinemeier Hansson2004-12-165-69/+74
* Added Base.validates_inclusion_ofDavid Heinemeier Hansson2004-12-163-30/+201
* Improving documentation...David Heinemeier Hansson2004-12-166-202/+163
* Renamed Mixins to Acts to resemble the change from include ActiveRecord::Mixi...David Heinemeier Hansson2004-12-169-30/+106
* Added option for turning off the automated timestampsDavid Heinemeier Hansson2004-12-163-11/+26
* Added assumption that a Symbol-based scope should end in _id unless it does s...David Heinemeier Hansson2004-12-163-9/+20
* Added assumption that a Symbol-based scope should end in _id unless it does s...David Heinemeier Hansson2004-12-162-2/+1
* Make it possible to use a regular scope string in addition to the symbol shor...David Heinemeier Hansson2004-12-161-1/+5
* Added Base.validates_inclusion_of that validates whether the value of the spe...David Heinemeier Hansson2004-12-162-0/+31
* Added Base.validates_inclusion_of that validates whether the value of the spe...David Heinemeier Hansson2004-12-161-0/+23
* git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@177 5ecf4fe2-1ee6-0...David Heinemeier Hansson2004-12-162-2/+24
* Added that Active Records will automatically record creation and/or update ti...David Heinemeier Hansson2004-12-167-229/+220
* Added Base.validates_format_of that Validates whether the value of the specif...David Heinemeier Hansson2004-12-166-13/+59
* Added Base.default_error_messages as a hash of all the error messages used in...David Heinemeier Hansson2004-12-152-9/+24
* Added automatic transaction block around AssociationCollection.<<, Associatio...David Heinemeier Hansson2004-12-152-8/+19
* Added Base.validates_boundries_of that delegates to add_on_boundary_breaking ...David Heinemeier Hansson2004-12-153-32/+64