aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
Commit message (Expand)AuthorAgeFilesLines
* Fixed that postgresql adapter would fails when reading bytea fields with null...David Heinemeier Hansson2005-03-061-2/+2
* Updated wording in YAML error [noradio]David Heinemeier Hansson2005-03-061-1/+1
* Added transactional fixtures that uses rollback to undo changes to fixtures i...David Heinemeier Hansson2005-03-061-28/+107
* Better yaml fixture error #759 [xal]David Heinemeier Hansson2005-03-061-1/+1
* Added destruction of dependent objects in has_one associations when a new ass...David Heinemeier Hansson2005-03-063-3/+13
* Added validates_numericality_of #716 [skanthak/c.r.mcgrath]David Heinemeier Hansson2005-03-061-42/+76
* Fixed rails_generator to be usable without RubyGems #686 [Cristi BALAN]. Move...David Heinemeier Hansson2005-03-062-5/+0
* Fixed that HasManyAssociation#count was using :finder_sql rather than :counte...David Heinemeier Hansson2005-03-061-1/+3
* Added better defaults for composed_of, so statements like composed_of :time_z...David Heinemeier Hansson2005-03-011-1/+2
* Ensure that the schema information table is available before doing any migrationDavid Heinemeier Hansson2005-03-011-1/+1
* Added preliminary support for an agile database migration technique (currentl...David Heinemeier Hansson2005-03-014-11/+187
* Fixed that association#count would produce invalid sql when called sequential...David Heinemeier Hansson2005-02-281-3/+3
* Added MacroReflection#macro which will return a symbol describing the macro u...David Heinemeier Hansson2005-02-271-4/+10
* Changed the auto-timestamping feature to use ActiveRecord::Base.default_timez...David Heinemeier Hansson2005-02-241-3/+13
* Fixes OCI adapter failure on timezone tests #700David Heinemeier Hansson2005-02-241-3/+4
* Finished polishing API docsDavid Heinemeier Hansson2005-02-2311-106/+97
* Updated documentation even moreDavid Heinemeier Hansson2005-02-231-1/+8
* Added documentation for database adapters to visible RDocDavid Heinemeier Hansson2005-02-235-56/+89
* Moved TimeZone to Active SupportDavid Heinemeier Hansson2005-02-231-155/+0
* Added a OCI8-based Oracle adapter that has been verified to work with Oracle ...David Heinemeier Hansson2005-02-232-244/+259
* Added TimeZone as the first of a number of value objects that Active Record w...David Heinemeier Hansson2005-02-231-0/+155
* Added option :schema_order to the PostgreSQL adapter to support the use of mu...David Heinemeier Hansson2005-02-231-1/+7
* Documentation fixes #694David Heinemeier Hansson2005-02-231-2/+2
* Fixed the Broken pipe error on SHOW FIELDs queries tooDavid Heinemeier Hansson2005-02-221-5/+2
* Optimized the SQL used to generate has_and_belongs_to_many queries by listing...David Heinemeier Hansson2005-02-222-2/+2
* Fixed that when using validation macros with a custom message, if you happene...David Heinemeier Hansson2005-02-221-3/+11
* Fixed that Active Record would throw Broken Pipe errors with FCGI when the My...David Heinemeier Hansson2005-02-211-28/+51
* Added options to specify an SSL connection for MySQL. Define the following at...David Heinemeier Hansson2005-02-201-4/+6
* Added automatic dropping/creating of test tables for running the unit tests o...David Heinemeier Hansson2005-02-206-1/+26
* Fixed that find_by_* would fail when column names had numbers #670 [demetrius]David Heinemeier Hansson2005-02-191-1/+1
* Fixed the SQL Server adapter on a bunch of issues #667 [DeLynn]David Heinemeier Hansson2005-02-191-50/+139
* Added validates_each that validates each specified attribute against a block ...David Heinemeier Hansson2005-02-181-181/+254
* Fixed that the dynamic finder like find_all_by_something_boolean(false) didn'...David Heinemeier Hansson2005-02-181-1/+1
* Fixed a bit to eager requiring of oracle bindings in oracle adapter #634David Heinemeier Hansson2005-02-181-1/+1
* Addded validation for validate all the associated objects before declaring fa...David Heinemeier Hansson2005-02-171-3/+3
* Fixed the verbosity of using the AR storeDavid Heinemeier Hansson2005-02-171-2/+9
* Moved Active Support into its own gemDavid Heinemeier Hansson2005-02-152-5/+5
* Small indentDavid Heinemeier Hansson2005-02-151-1/+1
* Added keyword-style approach to defining the custom relational bindings #545 ...David Heinemeier Hansson2005-02-071-1/+70
* 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-072-21/+265
* 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