aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
Commit message (Expand)AuthorAgeFilesLines
* Added MultiparameterAssignmentErrors and AttributeAssignmentError exceptions ...David Heinemeier Hansson2005-03-061-0/+10
* Added transactional fixtures that uses rollback to undo changes to fixtures i...David Heinemeier Hansson2005-03-061-1/+30
* Added destruction of dependent objects in has_one associations when a new ass...David Heinemeier Hansson2005-03-061-1/+2
* Added validates_numericality_of #716 [skanthak/c.r.mcgrath]David Heinemeier Hansson2005-03-061-0/+38
* Fixed reflection_for_gps_location testDavid Heinemeier Hansson2005-03-061-1/+5
* Fixed that HasManyAssociation#count was using :finder_sql rather than :counte...David Heinemeier Hansson2005-03-061-1/+1
* Added better defaults for composed_of, so statements like composed_of :time_z...David Heinemeier Hansson2005-03-019-5/+43
* Added preliminary support for an agile database migration technique (currentl...David Heinemeier Hansson2005-03-014-4/+129
* Added MacroReflection#macro which will return a symbol describing the macro u...David Heinemeier Hansson2005-02-271-3/+3
* Changed the auto-timestamping feature to use ActiveRecord::Base.default_timez...David Heinemeier Hansson2005-02-241-2/+2
* Moved over TimeZone test tooDavid Heinemeier Hansson2005-02-231-78/+0
* Remove outdated dev-utilsDavid Heinemeier Hansson2005-02-236-6/+0
* Added a OCI8-based Oracle adapter that has been verified to work with Oracle ...David Heinemeier Hansson2005-02-238-180/+218
* Added TimeZone as the first of a number of value objects that Active Record w...David Heinemeier Hansson2005-02-231-0/+78
* Fixed that when using validation macros with a custom message, if you happene...David Heinemeier Hansson2005-02-221-0/+82
* Added automatic dropping/creating of test tables for running the unit tests o...David Heinemeier Hansson2005-02-2021-4/+172
* Added validates_each that validates each specified attribute against a block ...David Heinemeier Hansson2005-02-181-39/+130
* Fixed that the dynamic finder like find_all_by_something_boolean(false) didn'...David Heinemeier Hansson2005-02-181-0/+10
* Skip Active Record tests in Action Pack if the SQLite database cant be brough...David Heinemeier Hansson2005-02-173-3/+9
* Addded validation for validate all the associated objects before declaring fa...David Heinemeier Hansson2005-02-171-2/+17
* Moved Active Support into its own gemDavid Heinemeier Hansson2005-02-152-3/+3
* Fix test case for MySQL #598David Heinemeier Hansson2005-02-151-0/+1
* Added keyword-style approach to defining the custom relational bindings #545 ...David Heinemeier Hansson2005-02-071-0/+54
* 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