aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
Commit message (Expand)AuthorAgeFilesLines
* Merged pull request #308 from joshk/assign_attributes.José Valim2011-04-253-11/+22
|\
| * deprecated the use of the guard_protected_attributes argument with attributes...Josh Kalderimis2011-04-253-11/+22
* | Do not use SQL LIKE operator for case insensitive uniqueness validationRaimonds Simanovskis2011-04-252-2/+29
|/
* Fixed error when running db:create with jdbcmysqlRashmi Yadav2011-04-252-1/+23
* Use existing #empty_insert_statement_value for an insert with no columns.Ken Collins2011-04-243-9/+1
* added config.active_record.whitelist_attributes which creates an empty whitel...Josh Kalderimis2011-04-241-0/+3
* Added assign_attributes to Active Record which accepts a mass-assignment secu...Josh Kalderimis2011-04-246-27/+132
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-04-233-8/+24
|\
| * copy-edits 0e2644cXavier Noria2011-04-233-3/+3
| * copy-edits e2656e0Xavier Noria2011-04-232-3/+3
| * copy-edits 3d45964Xavier Noria2011-04-232-2/+2
| * Added docs for #drop_database on MySQL adapterSebastian Martinez2011-04-222-1/+5
| * Added docs for #disconnect! on adaptersSebastian Martinez2011-04-223-1/+6
| * Added missing docs for clear_cache! on adaptersSebastian Martinez2011-04-223-0/+3
| * Added missing docs for +supports_primary_key?+ on some adaptersSebastian Martinez2011-04-222-0/+2
| * Added missing docs for +support_migrations?+ on some adaptersSebastian Martinez2011-04-222-0/+2
| * Have a more connection specific rdoc for +supports_statement_cache?+Sebastian Martinez2011-04-223-6/+6
| * Removed ON() on distinct commentSebastian Martinez2011-04-221-1/+1
* | split indexes and column types on money / binary iterationAaron Patterson2011-04-221-6/+5
* | fetch result row arrays from pg in C and return early if there are no money o...Aaron Patterson2011-04-221-31/+36
* | set the backtrace to prevent AR exceptions from lying to usAaron Patterson2011-04-221-1/+3
* | removing incorrect comment and string concatenationAaron Patterson2011-04-221-4/+1
* | Added test case and fix for proper eager loading associationsPavel Forkert2011-04-221-0/+10
* | The #substitute_at gets an ActiveRecord::ConnectionAdapters::Column in #inser...Ken Collins2011-04-231-1/+1
* | Move #exec_insert to abstract adapter's database statements.Ken Collins2011-04-224-12/+7
* | stop using distinct on for the unique id queries. [#6450 state:resolved]Aaron Patterson2011-04-212-1/+3
|/
* Avoid define_method if possible.José Valim2011-04-192-2/+2
* Bring back support for passing a callable object to the default_scope macro. ...Jon Leighton2011-04-184-0/+52
* Un-deprecate using 'default_scope' as a macro, but if you are calling the mac...Jon Leighton2011-04-1810-270/+85
* Fix test_load_save in test/cases/binary_test.rb (thanks @tenderlove for actua...Jon Leighton2011-04-171-2/+1
* Fix test_associate_existing in has_many_through_associations_test on mysql an...Jon Leighton2011-04-171-1/+1
* Bring back some bits of documentation for scopes which were removed as part o...Jon Leighton2011-04-171-1/+29
* Revert "Deprecate defining scopes with a callable (lambda, proc, etc) via the...Jon Leighton2011-04-176-114/+23
* Bypass IdentityMap in PostgreSQL geometric tests.Jason Weathered2011-04-171-2/+2
* Return nil from read_attribute(:foo) if 'foo' is not present in the @attribut...Jon Leighton2011-04-152-2/+3
* Undo performances regressions I introduced in bbe0a507f287c20ab4ae8a244fbfc81...Jon Leighton2011-04-152-5/+34
* Refactor test to avoid hackeryJon Leighton2011-04-151-4/+4
* Remove unnecessary code from define_read_method and add assertion to make sur...Jon Leighton2011-04-152-7/+5
* sort insert columns for better cache hitsAaron Patterson2011-04-141-1/+1
* refactoring inserts to use the same method on the connectionAaron Patterson2011-04-141-21/+16
* mimic prepared statements in the exec_insert for mysql2Aaron Patterson2011-04-141-0/+11
* mysql type cast should return integers when typecasting true / falseAaron Patterson2011-04-143-0/+57
* using the database adapter to typecast before executing prepared statementAaron Patterson2011-04-144-2/+34
* inserting big decimals as strings works consistently among dbs, so use string...Aaron Patterson2011-04-142-2/+2
* insert statements are prepared, but values are not escaped properlyAaron Patterson2011-04-145-8/+64
* adding a type cast method for prepared statementsAaron Patterson2011-04-143-1/+130
* Extract the constraint-building for joins in JoinAssociation into a separate ...Jon Leighton2011-04-141-8/+14
* Fixes performance issue introduced in 3.0.6 (issue #6695)Stian Grytøyr2011-04-141-3/+5
* do not depend on to_yaml being called, but rather depend on YAML being dumpedAaron Patterson2011-04-132-7/+8
* use index based substitution for bind parametersAaron Patterson2011-04-137-10/+10