aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
Commit message (Expand)AuthorAgeFilesLines
* create_table :force => true no longer tries to drop a non-existing tableTarmo Tänav2008-05-072-2/+20
* Added AbstractAdapter#table_exists? and made AbstractAdapter#table implementa...Tarmo Tänav2008-05-074-128/+119
* Added logic to associations.rb to make sure select_for_limited_idsJohn Devine2008-05-062-1/+33
* Ensure correct record is returned when preloading has_one where more than one...Frederick Cheung2008-05-063-1/+12
* Restore dump_schema_information connection adapter methodKyle Hargraves2008-05-051-0/+6
* Added change_table for migrations (Jeff Dean) [#71 state:resolved]David Heinemeier Hansson2008-05-037-9/+507
* Improve documentation coverage and markupXavier Noria2008-05-0215-197/+203
* Fix failing associate_with_create tests inserting null first_nameJeremy Kemper2008-05-011-3/+3
* Added missing filesDavid Heinemeier Hansson2008-05-013-0/+18
* Merge branch 'master' of git@github.com:rails/railsDavid Heinemeier Hansson2008-05-0111-19/+107
|\
| * Fixed AssociationsPreload such that it doesnt require foreign keys to be inte...David Heinemeier Hansson2008-04-304-12/+44
| * Added block-setting of attributes for Base.create like Base.new already has (...David Heinemeier Hansson2008-04-305-4/+56
| * Fixed fixture caching with prefixed or suffixed tables.Rhett Sutphin2008-04-302-3/+7
* | best solution?Steven Soroka2008-05-012-2/+14
|/
* Fixed that pessimistic locking you reference the quoted table name (Josh Suss...David Heinemeier Hansson2008-04-304-2/+12
* Ensure postgresql tests work when starting from scratch.Frederick Cheung2008-04-302-3/+1
* Change tests against all scope to base scope as all is now used as a finder a...David Heinemeier Hansson2008-04-303-14/+17
* Fixed that change_column should be able to use :null => true on a field that ...David Heinemeier Hansson2008-04-292-1/+10
* Merge branch 'master' of git@github.com:rails/railsDavid Heinemeier Hansson2008-04-291-1/+3
|\
| * Note that allow_concurrency = true means you need to verify_active_connection...Jeremy Kemper2008-04-281-1/+3
* | Default integer need not specify a limit [#20371 state:resolved] (matthuhiggins)David Heinemeier Hansson2008-04-291-1/+1
|/
* Let Base.all use conditions etc like first/lastDavid Heinemeier Hansson2008-04-283-1/+10
* Remove old :limit removal code from find_initial, logic is now handled in the...Aliaksey Kandratsenka2008-04-271-1/+1
* Ensure table names are quoted by the association preloading code.Frederick Cheung2008-04-268-10/+83
* Added that the MySQL adapter should map integer to either smallint, int, or b...David Heinemeier Hansson2008-04-252-0/+18
* Fixes a subtle bug when using symbols for key definitions in habtm associationsDavid Dollar2008-04-232-3/+32
* Fix include? on has_many collections with finder_sql to fall back to Array in...Joshua Bates2008-04-232-0/+12
* Provide data for the key column otherwise adding a unique index will fail. [#...Frederick Cheung2008-04-231-0/+1
* Use schema.rb for all databasesFrederick Cheung2008-04-2243-2928/+432
* Use the rails user when creating and dropping the database rather than fallin...Steven Soroka2008-04-211-6/+6
* Avoid adding two DISTINCT statements to queries in sqlite 2.Frederick Cheung2008-04-211-1/+1
* Fix sqlite adapter to work with the quoted table names returned by later vers...Frederick Cheung2008-04-211-1/+1
* Use define_callbacks helper for ActiveRecord validations.Joshua Peek2008-04-202-30/+14
* Tidy up ActiveSupport::Callbacks::CallbackChain instance API.Joshua Peek2008-04-171-2/+1
* Fix migrations when migrating to a specified version number with a fresh data...Ian White2008-04-172-3/+12
* Ignore debug logs and ensure ActiveResource's log is cleaned up.Joshua Peek2008-04-161-1/+0
* Revert "Ensure that save on child object fails for invalid belongs_to associa...Michael Koziarski2008-04-113-16/+0
* Change validates_uniqueness_of :case_sensitive option default back to true (f...Rick Olson2008-04-102-2/+4
* Ensure that save on child object fails for invalid belongs_to association. Cl...Pratik Naik2008-04-103-0/+16
* Add support for interleaving migrations by storing which migrations have run ...Rick Olson2008-04-0915-80/+204
* ActiveRecord::Base#sum defaults to 0 if no rows are returned. Closes #11550 ...Rick Olson2008-04-083-1/+7
* Improve ActiveRecord::Base#table_name unit tests for nested classes. Closes #...Josh Peek2008-04-072-0/+7
* Ensure that respond_to? considers dynamic finder methods. Closes #11538. [flo...Pratik Naik2008-04-064-13/+106
* Split associations_test.rb into multiple files based on association type. [Pr...Pratik Naik2008-04-067-2382/+2445
* Ensure that save on parent object fails for invalid has_one association. Clos...Pratik Naik2008-04-063-0/+27
* Remove duplicate code from associations. [Pratik]Pratik Naik2008-04-066-164/+72
* Refactor HasManyThroughAssociation to inherit from HasManyAssociation. Associ...Pratik Naik2008-04-0610-95/+301
* Ensure HABTM#create and HABTM#build do not load entire association. [Pratik]Pratik Naik2008-04-055-34/+48
* Improve documentation.Pratik Naik2008-04-059-27/+77
* Replaced callback method evaluation in AssociationCollection class to use Act...Josh Peek2008-04-041-13/+2