aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Expand)AuthorAgeFilesLines
...
* Fixed validates_associated should not stop on the first error (closes #4276) ...David Heinemeier Hansson2007-06-231-1/+1
* Mock the beginning of the transaction also. References #8642.Jeremy Kemper2007-06-231-1/+1
* Rollback if commit raises an exception. Closes #8642.Jeremy Kemper2007-06-231-2/+9
* Save associated records only if the association is already loaded. Closes #8713.Jeremy Kemper2007-06-211-3/+3
* MySQL: fix show_variable. Closes #8448.Jeremy Kemper2007-06-201-1/+2
* Remove deprecated quote methods, replaced by quote_value so quote can be used...Jeremy Kemper2007-06-111-12/+0
* Remove deprecated find_first and find_all.Jeremy Kemper2007-06-115-84/+2
* Remove deprecated push_with_attributes.Jeremy Kemper2007-06-111-22/+5
* Fix Base#inspect when not every attribute is present. Closes #8623.Jeremy Kemper2007-06-111-3/+4
* 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