aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
Commit message (Expand)AuthorAgeFilesLines
* belongs_to doesn't go :through. Closes #4961.Jeremy Kemper2007-05-181-2/+1
* Correct rdoc link to OracleAdapter. Closes #5289.Jeremy Kemper2007-05-181-1/+1
* Docs: warn that associations names shouldn't be reserved words. Closes #4378.Jeremy Kemper2007-05-182-0/+8
* Clarify :offset docs. Closes #3733.Jeremy Kemper2007-05-181-1/+1
* Pay tribute to timezones. Tune #inspect style.Jeremy Kemper2007-05-182-14/+16
* Sanitize Base#inspect. Closes #8392.Jeremy Kemper2007-05-185-35/+39
* Ensure that the BigDecimal assertions aren't run for sqlite3, which doesn't s...Michael Koziarski2007-05-181-4/+10
* Replace the transaction {|transaction|..} semantics with a new Exception Acti...Michael Koziarski2007-05-184-10/+9
* Oracle: extract column length for CHAR also. Closes #7866.Jeremy Kemper2007-05-152-0/+3
* Ensure copy table test runs for sqlite and sqlite3. [mislav] Cllosoes #8328Michael Koziarski2007-05-122-9/+7
* Sexy dumper now has its groove on (closes #8281) [Chris Wanstrath]David Heinemeier Hansson2007-05-113-15/+44
* Document :allow_nil option for validates_acceptance_of since it defaults to t...Marcel Molina2007-05-062-0/+3
* Update documentation for :dependent declaration so that it explicitly uses th...Marcel Molina2007-05-062-1/+3
* Add documentation caveat about when to use count_by_sql. Closes #8090. [fearo...Marcel Molina2007-05-062-0/+11
* Also add documentation enhancements for increment_counter. Closes #8092. [fea...Marcel Molina2007-05-062-6/+16
* Enhance documentation for decrement_counter. Closes #8093. [fearoffish]Marcel Molina2007-05-062-1/+15
* Provide brief introduction to what optimistic locking is. Closes #8097. [fear...Marcel Molina2007-05-062-0/+12
* Add documentation for :encoding option to mysql adapter. Closes #8219 [marclove]Marcel Molina2007-05-062-0/+3
* Use assert_match instead of String#include? so we can get helpful error messa...Michael Koziarski2007-05-061-1/+3
* Added short-hand declaration style to migrations (inspiration from Sexy Migra...David Heinemeier Hansson2007-05-062-2/+67
* Change Base#to_xml to take the name for a container element for an associatio...Michael Koziarski2007-05-033-3/+12
* Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug ...David Heinemeier Hansson2007-04-282-3/+0
* Improve Performance of calling create on has_many :through associations by av...Michael Koziarski2007-04-263-9/+21
* Improved performance by relying less on exception raising #8159 [Blaine]David Heinemeier Hansson2007-04-242-1/+9
* Added ActiveRecord::Base.inspect to return a column-view like #<Post id:integ...David Heinemeier Hansson2007-04-212-0/+7
* Run with the latest versions so beta gems will workDavid Heinemeier Hansson2007-04-212-10/+10
* Added yielding of Builder instance for ActiveRecord::Base#to_xml calls [DHH]David Heinemeier Hansson2007-04-133-2/+31
* documentation project patches, closes #7342, #7319, #7316, #7190 [jeremymcana...Rick Olson2007-03-277-6/+34
* Add helpful debugging info to the ActiveRecord::StatementInvalid exception in...Rick Olson2007-03-272-2/+4
* SQLite: binary escaping works with ='u'. Closes #7862.Jeremy Kemper2007-03-192-2/+4
* Hash#to_xml supports YAML attributes; ActiveRecord::Base#to_xml support seria...Jeremy Kemper2007-03-184-8/+21
* Fix method visibility bug uncovered by #7854.Jeremy Kemper2007-03-181-1/+1
* Base.update_all :order and :limit options. Useful for MySQL updates that must...Jeremy Kemper2007-03-173-2/+16
* Remove deprecated object transactions. People relying on this functionality ...Michael Koziarski2007-03-164-752/+6
* Remove special cases for BigDecimal and SQLite, tests pass without them and f...Michael Koziarski2007-03-161-9/+3
* Fix typo in migration test.Jeremy Kemper2007-03-161-1/+1
* PostgreSQL: remove DateTime -> Time downcast. Bypass the DateTime migration t...Jeremy Kemper2007-03-163-14/+8
* find_or_create_by_* takes a hash so you can create with more attributes than ...Jeremy Kemper2007-03-143-2/+35
* Make sure with_scope takes both :select and :joins into account when setting ...Michael Koziarski2007-03-133-1/+13
* trim the fatRick Olson2007-03-131-44/+0
* Allow a polymorphic :source for has_many :through associations. Closes #7143...Rick Olson2007-03-136-49/+143
* forgot to add tests for #7044Rick Olson2007-03-131-0/+145
* Credit Dan by name rather than nick.Jeremy Kemper2007-03-131-3/+3
* Consistent public/protected/private visibility for chained methods. Closes #7...Jeremy Kemper2007-03-134-46/+51
* Oracle: fix quoted primary keys and datetime overflow. Closes #7798.Jeremy Kemper2007-03-122-4/+15
* Fix @logger.debug? conditional considering @logger may be nil.Jeremy Kemper2007-03-111-14/+10
* Consistently quote primary key column names. Closes #7763.Jeremy Kemper2007-03-0924-8/+108
* Fixtures: fix YAML ordered map support. Closes #2665.Jeremy Kemper2007-03-093-7/+21
* DateTimes assume the default timezone. Closes #7764.Jeremy Kemper2007-03-093-2/+10
* Fix typo. References #7727, closes #7762.Jeremy Kemper2007-03-082-2/+2