aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/base_test.rb
Commit message (Expand)AuthorAgeFilesLines
* r3616@asus: jeremy | 2005-09-26 23:09:28 -0700Jeremy Kemper2005-10-161-1/+1
* Comment out the memory leak test because it b0rks the testing environment. Up...Jamis Buck2005-10-161-18/+21
* squash the memleak in dev mode finally (fingers crossed, here)Jamis Buck2005-10-151-0/+19
* Change quote delimiters for sql interpolation to obviate SyntaxErrors. Closes...Marcel Molina2005-10-141-0/+6
* Protect id attribute from mass assigment even when the primary key is set to ...Marcel Molina2005-10-121-0/+18
* Speed up the setting of table_name. Closes #2428.Marcel Molina2005-10-101-0/+11
* Add geometric type for postgresql adapter. Closes #2233.Marcel Molina2005-10-091-0/+62
* Add option (true by default) to generate reader methods for each attribute of...Marcel Molina2005-10-071-0/+20
* Fixup tests for [2474].Jeremy Kemper2005-10-061-10/+10
* Quote booleans according the rules defined by the adapterMichael Koziarski2005-10-061-1/+6
* Ticket 2256 - Recognize PostgreSQL NOW() default as equivalent to CURRENT_TIM...Jeremy Kemper2005-09-271-16/+21
* Fix serialization problem with YAML in 1.8.3Scott Barron2005-09-271-3/+3
* Fixed comparison of Active Record objects so two new objects are not equal #2...David Heinemeier Hansson2005-09-091-0/+4
* Modify read_attribute to allow a symbol argument #2024 [Ken Kunz]Jamis Buck2005-09-021-0/+10
* Make destroy return self #1913 [sebastian.kanthak@muehlheim.de]Jamis Buck2005-08-141-0/+6
* Made Oracle a first-class connection adapter by adhering closer to idiomatic ...David Heinemeier Hansson2005-07-241-1/+1
* Fixed incompatibility in DB2 adapter with the new limit/offset approach #1718...David Heinemeier Hansson2005-07-171-1/+1
* Fix regression from [1631] that caused an attribute to be set to nil if it wa...Jamis Buck2005-07-051-0/+6
* Fixed Base#write_attribute to work with both symbols and strings #1190 [Paul ...David Heinemeier Hansson2005-07-031-0/+9
* Fixed that has_and_belongs_to_many didn't respect single table inheritance ty...David Heinemeier Hansson2005-07-031-1/+1
* Added support for ODBC connections to MS SQL Server so you can connect from a...David Heinemeier Hansson2005-07-011-0/+8
* Fixed that multiparameter posts ignored attr_protected #1532 [alec+rails@very...David Heinemeier Hansson2005-06-281-0/+13
* Updated all references to the old find_first and find_all to use the new styl...David Heinemeier Hansson2005-06-261-5/+5
* Fixed that clear_association_cache doesn't delete new associations on new rec...David Heinemeier Hansson2005-06-251-0/+21
* Be sure to use the @finder_sql in the has_many association's #find method, ev...Jamis Buck2005-06-131-1/+2
* Do not use instantiated fixtures (in general) in tests. Also, support the use...Jamis Buck2005-06-101-21/+21
* Fixed that clone would break when an aggregate had the same name as one of it...David Heinemeier Hansson2005-05-191-3/+31
* Changed the callbacks such that observers are notified before the in-object c...David Heinemeier Hansson2005-05-021-1/+8
* Added compatibility with camelCase column names for dynamic finders #533 [Dee...David Heinemeier Hansson2005-04-301-1/+2
* Fixed extraneous comma in count() function that made it not work with joins #...David Heinemeier Hansson2005-04-301-0/+12
* A few more tests #1199David Heinemeier Hansson2005-04-301-1/+14
* decrease reliance on instantiated fixtures #980 [Jeremy Kemper]David Heinemeier Hansson2005-04-021-21/+15
* Added MultiparameterAssignmentErrors and AttributeAssignmentError exceptions ...David Heinemeier Hansson2005-03-061-0/+10
* Changed the auto-timestamping feature to use ActiveRecord::Base.default_timez...David Heinemeier Hansson2005-02-241-2/+2
* 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-071-1/+1
* Added an Oracle adapter that works with the Oracle bindings by Yoshida (http:...David Heinemeier Hansson2005-02-071-0/+14
* Dont call id explicitly to do reloading that way we get rid of the warnings #...David Heinemeier Hansson2005-02-071-1/+1
* 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
* Added the option of supplying an array of ids and attributes to Base#update, ...David Heinemeier Hansson2005-01-251-14/+22
* 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 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
* Added Base#attributes that returns a hash of all the attributes with their na...David Heinemeier Hansson2005-01-111-1/+6
* Added Base#reload that reloads the attributes of an object from the database ...David Heinemeier Hansson2005-01-101-1/+10
* 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