aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Expand)AuthorAgeFilesLines
* Extract `build_scope` and `predicate_builder` in `Reflection`Ryuta Kamizono2017-06-243-12/+14
* Merge pull request #29513 from kirs/fixture-yaml-fallbackRafael França2017-06-211-5/+4
|\
| * Avoid begin/rescue in fixture quotingKir Shatrov2017-06-201-5/+4
* | Keep INNER JOIN when merging relationsMaxime Lapointe2017-06-201-3/+3
|/
* Fix ActiveRecord::Persistence#touch with lockingbogdanvlviv2017-06-211-1/+1
* Fix destroy with locking_column value nullbogdanvlviv2017-06-201-1/+1
* Merge pull request #29504 from kirs/fixtures-arel-bulkRafael França2017-06-204-9/+74
|\
| * Use bulk INSERT to insert fixturesKir Shatrov2017-06-204-9/+74
* | Merge pull request #28833 from bogdanvlviv/add-test-cases-for-optimistic-lockingRafael França2017-06-201-3/+4
|\ \ | |/ |/|
| * Clean up 'Optimistic Locking' implementationbogdanvlviv2017-06-121-3/+4
* | Merge pull request #29454 from kamipo/fix_exists_queries_with_cacheRafael França2017-06-192-51/+0
|\ \
| * | Ensure query caching for `select_*` methods in connection adaptersRyuta Kamizono2017-06-153-52/+1
| * | Fix `Relation#exists?` queries with query cacheRyuta Kamizono2017-06-151-1/+1
* | | Merge pull request #29494 from kamipo/prevent_extra_scope_constructionRafael França2017-06-193-3/+5
|\ \ \
| * | | Prevent extra `scope` construction in `find_target`Ryuta Kamizono2017-06-183-3/+5
* | | | Merge pull request #29486 from kirs/fixtures-arelRafael França2017-06-191-4/+11
|\ \ \ \ | |/ / / |/| | |
| * | | Refactor #insert_fixtures to use ArelKir Shatrov2017-06-191-4/+11
* | | | Merge pull request #29455 from kirs/remove-column-with-fk-mysqlGuillermo Iguaran2017-06-161-0/+7
|\ \ \ \
| * | | | Remove FK together with column in MySQLKir Shatrov2017-06-161-0/+7
* | | | | Merge pull request #29392 from alexcameron89/unpersisted_create_associationMatthew Draper2017-06-171-0/+4
|\ \ \ \ \
| * | | | | Raise on create for singular association when parent is unpersistedAlex Kitchens2017-06-081-0/+4
| |/ / / /
* | | | | Merge pull request #29431 from kamipo/fix_create_table_with_query_from_relationMatthew Draper2017-06-171-1/+6
|\ \ \ \ \
| * | | | | Fix `create_table` with query from relationRyuta Kamizono2017-06-131-1/+6
| | |_|_|/ | |/| | |
* | | | | Merge pull request #29461 from dnl/unscope_where_orMatthew Draper2017-06-171-1/+1
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | Don't require 'unscope' to be the same for both sides of a 'or' relation.Dan Sherson2017-06-151-1/+1
* | | | | Merge pull request #29464 from eugeneius/raw_write_attributeRafael França2017-06-151-15/+6
|\ \ \ \ \
| * | | | | Don't map id to primary key in raw_write_attributeEugene Kenny2017-06-151-15/+6
| |/ / / /
* | | | | Fix `dump_schema_information` with empty versionsRyuta Kamizono2017-06-151-1/+1
* | | | | Remove deprecated option from docs [ci skip] (#29459)Vipul A M2017-06-151-6/+6
|/ / / /
* | | / Prevent extra `sync_with_transaction_state`Ryuta Kamizono2017-06-151-5/+2
| |_|/ |/| |
* | | Merge pull request #29378 from kamipo/avoid_overwriting_id_attribute_methodsRafael França2017-06-141-7/+3
|\ \ \ | |/ / |/| |
| * | Avoid overwriting the methods of `AttributeMethods::PrimaryKey`Ryuta Kamizono2017-06-071-7/+3
| |/
* / Remove `null_allowed` option from doc [ci skip]yuuji.yaginuma2017-06-101-2/+1
|/
* [ci skip] UNIQUE constraint affects not only INSERT but also UPDATERyuta Kamizono2017-06-061-1/+1
* Don't mark the schema loaded until it's really finishedMatthew Draper2017-06-051-3/+5
* Merge pull request #29294 from gsamokovarov/attributes-defaultKasper Timm Hansen2017-06-045-21/+10
|\
| * Use mattr_accessor default: option throughout the projectGenadi Samokovarov2017-06-035-21/+10
* | [ci skip] Add missing `be`Prathamesh Sonpatki2017-06-031-1/+1
|/
* Merge pull request #29135 from Nerian/document_support_for_composite_primary_...Eileen M. Uchitelle2017-06-021-0/+19
|\
| * Document support for composite primary keysNerian2017-05-181-0/+19
* | Merge pull request #29282 from kamipo/prevent_making_bind_param_if_casted_val...Eileen M. Uchitelle2017-06-022-8/+13
|\ \
| * | Prevent making bind param if casted value is nilRyuta Kamizono2017-05-312-8/+13
* | | Merge pull request #29220 from kamipo/consolidate_database_specific_json_typesMatthew Draper2017-06-017-45/+35
|\ \ \
| * | | Consolidate database specific JSON types to `Type::Json`Ryuta Kamizono2017-05-307-45/+35
* | | | Merge pull request #29293 from kamipo/fix_sti_with_default_scopeMatthew Draper2017-06-011-1/+5
|\ \ \ \
| * | | | Fix `default_scoped` with defined `default_scope` on STI modelRyuta Kamizono2017-05-311-1/+5
| | |/ / | |/| |
* | | | Should use `quote` for a string literalRyuta Kamizono2017-06-011-1/+1
* | | | Add missing `delegate :extending, to: :all`Ryuta Kamizono2017-06-011-1/+1
|/ / /
* | | Merge pull request #29261 from kamipo/dont_expose_methods_and_attrs_for_inter...Matthew Draper2017-05-317-29/+39
|\ \ \
| * | | Don't expose methods and attrs for internal usageRyuta Kamizono2017-05-307-29/+39
| |/ /