aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
Commit message (Expand)AuthorAgeFilesLines
* Document the :message option for validates_associated. Closes #10357 [dylans]Marcel Molina2007-12-051-0/+1
* Document automatically generated predicate methods for attributes. Closes #10...Marcel Molina2007-12-051-0/+14
* Fix that options[:from] table names should never be quoted [DHH]David Heinemeier Hansson2007-12-051-1/+1
* Copy the cache tooDavid Heinemeier Hansson2007-12-031-0/+1
* Added ActiveRecord::Base#becomes to turn a record into one of another class (...David Heinemeier Hansson2007-12-031-0/+14
* Fixed that to_xml should not automatically pass :procs to associations includ...David Heinemeier Hansson2007-12-031-8/+10
* Fix documentation typo introduced in [8250]. Closes #10339 [Henrik N]Marcel Molina2007-12-021-1/+1
* Handle 8.1 default formatting. Closes #10333 [Tim Pope]Jeremy Kemper2007-12-021-0/+3
* Warn users about the race condition in validates_uniqueness_of. [Koz]Michael Koziarski2007-12-011-0/+4
* Removed documentation for the removed rollback! method on transactions and me...Tobias Lütke2007-11-291-12/+2
* Make reset return nil when using a dangling belongs_to association. Current ...Michael Koziarski2007-11-291-1/+1
* Prep for RC2David Heinemeier Hansson2007-11-291-1/+1
* attr_protected and _accessible use sets of strings instead of arrays of symbo...Jeremy Kemper2007-11-281-4/+4
* attr_readonly uses a set of strings instead of an array of symbols internally...Jeremy Kemper2007-11-281-2/+2
* Foxy fixtures: support single-table inheritance. Closes #10234.Jeremy Kemper2007-11-261-1/+13
* Foxy fixtures: allow mixed usage to make migration easier and more attractive...Jeremy Kemper2007-11-261-11/+18
* Make the record_timestamps class-inheritable so it can be set per model. Refe...Jeremy Kemper2007-11-261-1/+1
* Allow validates_acceptance_of to use a real attribute instead of only virtual...David Heinemeier Hansson2007-11-251-3/+3
* Docfix (closes #10252)David Heinemeier Hansson2007-11-251-1/+1
* Fixed that create table with :id => false and fixtures don't play nice togeth...David Heinemeier Hansson2007-11-251-2/+6
* Honor Ruby's default calendar reform setting when creating DateTime objects v...Geoff Buesing2007-11-241-2/+1
* PostgreSQL: correct binary escaping. References #8049, closes #10176 [jbasdf,...Jeremy Kemper2007-11-221-2/+2
* Dynamic finders on association collections respect association :limit. Closes...Jeremy Kemper2007-11-213-3/+8
* Make Dynamic Finders on Association Collections Respect Association :order [p...Michael Koziarski2007-11-213-3/+4
* validates_inclusion_of and validates_exclusion_of allow formatted :message st...Jeremy Kemper2007-11-201-4/+6
* Add 'foxy' support for fixtures of polymorphic associations. Closes #10183 [j...Michael Koziarski2007-11-201-0/+35
* Use debug, not info as log_info will discard the information if info is used.Michael Koziarski2007-11-171-1/+1
* attr_readonly behaves well with optimistic locking. Closes #10188.Jeremy Kemper2007-11-161-1/+1
* Base#to_xml supports the nil="true" attribute like Hash#to_xml. Closes #8268.Jeremy Kemper2007-11-141-0/+4
* Change plings to the more conventional quotes in the documentation. Closes #1...Marcel Molina2007-11-121-1/+1
* Improve documentation for IrreversibleMigrations. Closes #9636 [toolmantim]Michael Koziarski2007-11-111-3/+3
* Fix HasManyThrough Association so it uses :conditions on the HasMany Associat...Rick Olson2007-11-111-1/+2
* Ensure that column names are quoted. Closes #10134 [wesley.moxam]Michael Koziarski2007-11-101-31/+48
* Set the record straight on the purpose and utility of db/schema.rbDavid Heinemeier Hansson2007-11-091-2/+9
* Prepare versions for RC1David Heinemeier Hansson2007-11-091-2/+2
* Kill the whiny_protected_attributes setting and kill the exception raised. In...David Heinemeier Hansson2007-11-091-13/+1
* Removed unused code (closes #9906)David Heinemeier Hansson2007-11-091-4/+0
* Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva]Marcel Molina2007-11-0817-96/+107
* Address shortcomings of changeset [8054] [protocool]David Heinemeier Hansson2007-11-073-119/+40
* Enhance explanation with more examples for attr_accessible macro. Closes #809...Marcel Molina2007-11-061-12/+19
* Standardize on using hyphens rather than colons to separate option names from...Marcel Molina2007-11-062-11/+11
* Update association/method mapping table to refected latest collection methods...Marcel Molina2007-11-061-6/+6
* Make transaction documentation example more realisticMarcel Molina2007-11-061-2/+2
* Explain semantics of having several different AR instances in a transaction b...Marcel Molina2007-11-061-0/+13
* Add missing file for revision #8090Marcel Molina2007-11-061-1/+1
* Update Schema documentation to use updated sexy migration notation. Closes #1...Marcel Molina2007-11-061-5/+5
* Use the safe conversion code introduced in earlier commit. References #10068...Michael Koziarski2007-11-051-1/+1
* Escape table names during calculation queries. [wesley.moxam, Koz] Closes #4593Michael Koziarski2007-10-311-2/+2
* Make fixtures work with the new test subclasses. [tarmo, Koz]Michael Koziarski2007-10-311-6/+6
* Introduce finder :joins with associations. Same :include syntax but with inne...Jeremy Kemper2007-10-293-22/+134