aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
Commit message (Expand)AuthorAgeFilesLines
* Fix documentation typo introduced in [8250]. Closes #10339 [Henrik N]Marcel Molina2007-12-022-1/+3
* 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-292-1/+18
* Prep for RC2David Heinemeier Hansson2007-11-293-3/+3
* attr_protected and _accessible use sets of strings instead of arrays of symbo...Jeremy Kemper2007-11-282-8/+16
* attr_readonly uses a set of strings instead of an array of symbols internally...Jeremy Kemper2007-11-283-4/+4
* Foxy fixtures: support single-table inheritance. Closes #10234.Jeremy Kemper2007-11-266-2/+37
* Foxy fixtures: allow mixed usage to make migration easier and more attractive...Jeremy Kemper2007-11-2611-22/+84
* Make the record_timestamps class-inheritable so it can be set per model. Refe...Jeremy Kemper2007-11-262-1/+3
* Allow validates_acceptance_of to use a real attribute instead of only virtual...David Heinemeier Hansson2007-11-253-3/+14
* 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-255-3/+28
* Honor Ruby's default calendar reform setting when creating DateTime objects v...Geoff Buesing2007-11-243-3/+5
* Add example.log for binary escaping test. References #10176.Jeremy Kemper2007-11-221-0/+1
* PostgreSQL: correct binary escaping. References #8049, closes #10176 [jbasdf,...Jeremy Kemper2007-11-222-29/+24
* Dynamic finders on association collections respect association :limit. Closes...Jeremy Kemper2007-11-216-3/+41
* Make Dynamic Finders on Association Collections Respect Association :order [p...Michael Koziarski2007-11-215-3/+86
* validates_inclusion_of and validates_exclusion_of allow formatted :message st...Jeremy Kemper2007-11-203-4/+30
* Add 'foxy' support for fixtures of polymorphic associations. Closes #10183 [j...Michael Koziarski2007-11-208-0/+49
* 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-163-1/+19
* Use rexml for some tests rather than string include? checks to account for un...Jeremy Kemper2007-11-141-14/+35
* Base#to_xml supports the nil="true" attribute like Hash#to_xml. Closes #8268.Jeremy Kemper2007-11-144-9/+29
* Change plings to the more conventional quotes in the documentation. Closes #1...Marcel Molina2007-11-122-1/+3
* 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-115-1/+12
* Ensure that column names are quoted. Closes #10134 [wesley.moxam]Michael Koziarski2007-11-104-38/+61
* 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-092-3/+3
* Kill the whiny_protected_attributes setting and kill the exception raised. In...David Heinemeier Hansson2007-11-093-32/+2
* Removed unused code (closes #9906)David Heinemeier Hansson2007-11-091-4/+0
* Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva]Marcel Molina2007-11-0818-96/+109
* Address shortcomings of changeset [8054] [protocool]David Heinemeier Hansson2007-11-075-277/+128
* Enhance explanation with more examples for attr_accessible macro. Closes #809...Marcel Molina2007-11-062-12/+21
* 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-062-6/+8
* 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-062-0/+15
* 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-062-5/+7
* 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-312-2/+7
* Make fixtures work with the new test subclasses. [tarmo, Koz]Michael Koziarski2007-10-314-7/+20
* Introduce finder :joins with associations. Same :include syntax but with inne...Jeremy Kemper2007-10-295-22/+299
* Associations: speedup duplicate record check. Closes #10011.Jeremy Kemper2007-10-292-1/+30
* Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with...Rick Olson2007-10-291-1/+1
* Make sure that << works on has_many associations on unsaved records. Closes ...Michael Koziarski2007-10-283-0/+10
* Allow association redefinition in subclasses. Closes #9346.Jeremy Kemper2007-10-274-2/+89