aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Expand)AuthorAgeFilesLines
...
* Rollback [6961] which breaks SQLite tests. Reference #7345.Jeremy Kemper2007-06-081-2/+1
* Migrations: raise if a column is duplicated. Closes #7345.Jeremy Kemper2007-06-071-1/+2
* Migrations: report the number of rows affected when calling insert, update, d...Jeremy Kemper2007-06-051-0/+1
* Fixtures: correctly delete and insert fixtures in a single transaction. Close...Jeremy Kemper2007-06-051-1/+1
* Fixtures: people(:technomancy, :josh) returns both fixtures. Closes #7880.Jeremy Kemper2007-06-051-9/+15
* Calculations support non-numeric foreign keys. Closes #8154.Jeremy Kemper2007-06-011-1/+2
* Base.inspect handles Base itself and abstract_class? Don't use #<Foo ...> si...Jeremy Kemper2007-05-311-2/+9
* Fix an edge case with find with a list of ids, limit, and offset. Closes #8437.Jeremy Kemper2007-05-311-4/+6
* with_scope is protected. Closes #8524.Jeremy Kemper2007-05-304-92/+104
* Quickref for association methods. Closes #7723.Jeremy Kemper2007-05-301-3/+40
* Calculations: return nil average instead of 0 when there are no rows to avera...Jeremy Kemper2007-05-301-1/+1
* acts_as_nested_set: direct_children is sorted correctly. Closes #4761.Jeremy Kemper2007-05-301-1/+1
* Raise an exception if both attr_protected and attr_accessible are declared. C...Jeremy Kemper2007-05-291-0/+2
* Typo in PostgreSQL change_column quoting. References #8466.Jeremy Kemper2007-05-291-1/+1
* Missed Oracle rename_column quoting. References #8466.Jeremy Kemper2007-05-291-1/+1
* SQLite, MySQL, PostgreSQL, Oracle: quote column names in column migration SQL...Jeremy Kemper2007-05-294-15/+20
* Allow nil serialized attributes with a set class constraint. #7293 [sandofsky]Rick Olson2007-05-281-2/+2
* Oracle binary fixtures; pull fixture insertion into the adapters. Closes #7987.Jeremy Kemper2007-05-263-11/+35
* Announce migration versions as they're performed.Jeremy Kemper2007-05-261-35/+41
* find gracefully copes with blank :conditions. Closes #7599.Jeremy Kemper2007-05-261-3/+3
* validates_numericality_of takes :greater_than, :greater_than_or_equal_to, :eq...Jeremy Kemper2007-05-261-14/+51
* MySQL: create_database takes :charset and :collation options. Charset default...Jeremy Kemper2007-05-261-9/+35
* Find with a list of ids supports limit/offset. Closes #8437.Jeremy Kemper2007-05-251-2/+13
* Optimistic locking: revert the lock version when an update fails. Closes #784...Jeremy Kemper2007-05-251-16/+23
* Migrations: add_column supports custom column types. Closes #7742. First-patc...Jeremy Kemper2007-05-251-14/+17
* Call the newly generated read method after generating it. Closes #8470.Jeremy Kemper2007-05-251-4/+15
* Load database adapters on demand. Eliminates config.connection_adapters and R...Jeremy Kemper2007-05-254-40/+43
* Ensure that associations with :dependent => :delete_all respect :conditions o...Rick Olson2007-05-241-4/+5
* Fix :through docs wrecked up by [6777]. Closes #4961.Jeremy Kemper2007-05-231-1/+2
* belongs_to assignment creates a new proxy rather than modifying its target in...Jeremy Kemper2007-05-221-4/+1
* Fix column type detection while loading fixtures. Closes #7987 [roderickvd]Rick Olson2007-05-211-1/+1
* Document deep eager includes. Closes #6267.Jeremy Kemper2007-05-191-1/+9
* Revert [4706] which added incorrect docs. References #5684.Jeremy Kemper2007-05-191-9/+0
* Fix #inspect for new records. Closes #8405.Jeremy Kemper2007-05-191-1/+1
* belongs_to doesn't go :through. Closes #4961.Jeremy Kemper2007-05-181-2/+1
* Docs: warn that associations names shouldn't be reserved words. Closes #4378.Jeremy Kemper2007-05-181-0/+6
* Clarify :offset docs. Closes #3733.Jeremy Kemper2007-05-181-1/+1
* Pay tribute to timezones. Tune #inspect style.Jeremy Kemper2007-05-181-7/+9
* Sanitize Base#inspect. Closes #8392.Jeremy Kemper2007-05-182-2/+22
* Replace the transaction {|transaction|..} semantics with a new Exception Acti...Michael Koziarski2007-05-182-8/+5
* Oracle: extract column length for CHAR also. Closes #7866.Jeremy Kemper2007-05-151-0/+1
* Sexy dumper now has its groove on (closes #8281) [Chris Wanstrath]David Heinemeier Hansson2007-05-111-9/+24
* Document :allow_nil option for validates_acceptance_of since it defaults to t...Marcel Molina2007-05-061-0/+1
* Update documentation for :dependent declaration so that it explicitly uses th...Marcel Molina2007-05-061-1/+1
* Add documentation caveat about when to use count_by_sql. Closes #8090. [fearo...Marcel Molina2007-05-061-0/+9
* Also add documentation enhancements for increment_counter. Closes #8092. [fea...Marcel Molina2007-05-061-5/+15
* Enhance documentation for decrement_counter. Closes #8093. [fearoffish]Marcel Molina2007-05-061-1/+13
* Provide brief introduction to what optimistic locking is. Closes #8097. [fear...Marcel Molina2007-05-061-0/+10
* Add documentation for :encoding option to mysql adapter. Closes #8219 [marclove]Marcel Molina2007-05-061-0/+1
* Added short-hand declaration style to migrations (inspiration from Sexy Migra...David Heinemeier Hansson2007-05-061-1/+45