Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use #distinct instead of #uniq in the guides [ci skip] (#25098) | Junya Ogura | 2016-05-21 | 1 | -1/+1 |
| | | | * #uniq will be deprecated, see: rails/rails@adfab2d | ||||
* | Add SQL examples for equality and NOT [ci skip] | Tom Copeland | 2016-04-21 | 1 | -3/+13 |
| | |||||
* | MariaDB Documentation | iangilfillan | 2016-04-14 | 1 | -3/+5 |
| | |||||
* | Correct typos in "Active Record Query Interface" guide | Laura Murphy-Clarkin | 2016-03-25 | 1 | -19/+19 |
| | |||||
* | Fix small typo in Rails guides [ci skip] | Mehmet Emin İNAÇ | 2016-02-15 | 1 | -1/+1 |
| | |||||
* | Update active_record_querying.md | Mark J. Lehman | 2016-02-10 | 1 | -0/+22 |
| | | | Added important distinction between scopes and class methods. | ||||
* | English explanation to multi-level nested join | Collin Graves | 2016-01-27 | 1 | -0/+2 |
| | | | Added an "Or, in English..." explanation to the "Joining Nested Associations (Multiple Level)" example. | ||||
* | Merge pull request #23099 from vipulnsward/change_start_at_end_at | Kasper Timm Hansen | 2016-01-18 | 1 | -10/+10 |
|\ | | | | | Changed options for find_each and variants to have options start/finish | ||||
| * | Changed options for find_each and variants to have options start/finish ↵ | Vipul A M | 2016-01-18 | 1 | -10/+10 |
| | | | | | | | | | | | | instead of start_at/end_at based on comments at https://github.com/rails/rails/pull/12257#issuecomment-74688344 | ||||
* | | Merge pull request #22705 from ↵ | Jon Moss | 2016-01-18 | 1 | -2/+28 |
|\ \ | |/ |/| | | | | | RochesterinNYC/add-order-explanation-to-first-last-guides Add clarification about `first` and `last` behavior when using `order` [ci skip] | ||||
| * | Add clarification about `first` and `last` behavior when using `order` [ci skip] | James Wen | 2015-12-20 | 1 | -2/+28 |
| | | |||||
* | | [ci skip] fix typo in docs | ankit1910 | 2016-01-14 | 1 | -1/+1 |
|/ | |||||
* | Introduce ApplicationRecord, an Active Record layer supertype | Genadi Samokovarov | 2015-12-16 | 1 | -24/+24 |
| | | | | | | | | | | | | | | | | It's pretty common for folks to monkey patch `ActiveRecord::Base` to work around an issue or introduce extra functionality. Instead of shoving even more stuff in `ActiveRecord::Base`, `ApplicationRecord` can hold all those custom work the apps may need. Now, we don't wanna encourage all of the application models to inherit from `ActiveRecord::Base`, but we can encourage all the models that do, to inherit from `ApplicationRecord`. Newly generated applications have `app/models/application_record.rb` present by default. The model generators are smart enough to recognize that newly generated models have to inherit from `ApplicationRecord`, but only if it's present. | ||||
* | Merge pull request #22367 from andreynering/docs-ar-enums | Yves Senn | 2015-12-10 | 1 | -0/+30 |
|\ | | | | | | | Adding Enums section to AR Querying. [ci skip] | ||||
| * | Adding Enums section to Active Record Querying Guide. [ci skip] | Andrey Nering | 2015-12-08 | 1 | -0/+25 |
|/ | |||||
* | Modify unscoped usage guide to include chaining | Jeff Minnear | 2015-11-30 | 1 | -2/+9 |
| | |||||
* | [ci skip] querying guide methods first and last: mentioning the influence of ↵ | r11runner | 2015-10-31 | 1 | -0/+4 |
| | | | | the default scope | ||||
* | Merge pull request #12071 from Crunch09/outer_joins | Sean Griffin | 2015-10-30 | 1 | -11/+37 |
|\ | | | | | | | added ActiveRecord::Relation#outer_joins | ||||
| * | added ActiveRecord::Relation#left_outer_joins | Florian Thomas | 2015-05-19 | 1 | -11/+37 |
| | | | | | | | | | | | | Example: User.left_outer_joins(:posts) => SELECT "users".* FROM "users" LEFT OUTER JOIN "posts" ON "posts"."user_id" = "users"."id" | ||||
* | | Use #distinct instead of #uniq in the guides [ci skip] | oesgalha | 2015-10-29 | 1 | -2/+2 |
| | | | | | | | | | | * #uniq is an alias of #distinct * #uniq will be deprecated, see: rails/rails@adfab2dcf4003ca564d78d4425566dd2d9cd8b4f | ||||
* | | Merge pull request #21333 from imtayadeway/ar-querying-docs | Eileen M. Uchitelle | 2015-09-09 | 1 | -17/+16 |
|\ \ | | | | | | | Improve the AR querying docs | ||||
| * | | [ci skip] Update MySQL docs reference to latest | Tim Wade | 2015-09-09 | 1 | -1/+1 |
| | | | | | | | | | | | | Bumps to 5.7 | ||||
| * | | [ci skip] Improve readability in AR querying guide | Tim Wade | 2015-09-09 | 1 | -16/+15 |
| | | | | | | | | | | | | | | | | | | * rewords a few awkwardly worded sentences * adds some punctuation * adds a few missing words | ||||
* | | | guides, move incomplete example to corresponding option. #21349 | Yves Senn | 2015-08-24 | 1 | -2/+4 |
|/ / | | | | | | | | | | | | | [ci skip] This example is dependent on the `:end_at` option and has been removed from `4-2-stable` (d167b811520a6f800b86c77b805d15505a251bb8) | ||||
* / | Add a note about default_scope and create records | Mauro George | 2015-07-16 | 1 | -0/+12 |
|/ | | | | [ci skip] | ||||
* | Merge pull request #20119 from yui-knk/fix/active_record_querying | Yves Senn | 2015-05-12 | 1 | -1/+1 |
|\ | | | | | [ci skip] Fix `transaction` code example | ||||
| * | [ci skip] Fix `transaction` code example | yui-knk | 2015-05-12 | 1 | -1/+1 |
| | | |||||
* | | [ci skip] Improve phrasing on #explain pretty printing. | Tim Wade | 2015-05-10 | 1 | -2/+3 |
|/ | |||||
* | Fix find_each options [ci skip] | Alexey Markov | 2015-04-22 | 1 | -2/+2 |
| | |||||
* | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2015-04-14 | 1 | -1/+1 |
|\ | |||||
| * | [ci skip] Add `:` | yui-knk | 2015-04-01 | 1 | -1/+1 |
| | | |||||
* | | [ci skip] Fix `:having` option with `having` method | yui-knk | 2015-04-01 | 1 | -1/+1 |
| | | |||||
* | | Correct doc sentence [ci skip] | Santosh Wadghule | 2015-03-27 | 1 | -1/+1 |
|/ | |||||
* | [skip ci] Fix typos in guides | Anton Davydov | 2015-03-15 | 1 | -1/+1 |
| | |||||
* | Improve wording on find_by note regarding returning only one record [ci skip] | Konstantinos Rousis | 2015-02-21 | 1 | -2/+3 |
| | |||||
* | Deprecated passing of `start` value to `find_in_batches` and `find_each` in ↵ | Vipul A M | 2015-02-17 | 1 | -9/+9 |
| | | | | favour of `begin_at` value. | ||||
* | Add an option `end_at` to `find_in_batches` | Vipul A M | 2015-02-09 | 1 | -1/+14 |
| | | | | that complements the `start`parameter to specify where to stop batch processing | ||||
* | Fixed extraneous quoting | Oge Nnadi | 2015-01-16 | 1 | -1/+1 |
| | |||||
* | Typo fix | Oge Nnadi | 2015-01-16 | 1 | -1/+1 |
| | |||||
* | Merge pull request #18503 from vipulnsward/guides-in-on | Xavier Noria | 2015-01-14 | 1 | -1/+1 |
|\ | | | | | Changed `IN` to `ON` in markdown renderer condition | ||||
| * | - Changed `IN` to `ON` in markdown renderer condition | Vipul A M | 2015-01-14 | 1 | -1/+1 |
| | | | | | | | | - Changed `IN` to `ON` in all note sentences in guides. | ||||
* | | Updated active_record_querying.md | Ahmad Al-kheat | 2015-01-12 | 1 | -0/+6 |
|/ | | | | | | | | Added the SQL equivalent of the find_by method Update active_record_querying.md Update active_record_querying.md | ||||
* | Add missing information regarding callbacks | Max Katz | 2015-01-04 | 1 | -1/+1 |
| | |||||
* | Avoid displaying new lines inside note paragraphs | Robin Dupret | 2015-01-03 | 1 | -1/+2 |
| | | | | | | | | | | | | | Commit 65a2977 added a `pre-wrap` style for white spaces on `.note` paragraphs. However, this is first inconsistent as other notes like warnings don't have this style applied. Furthermore, it seems to be unneeded for mobile devices. Also revert changes made in #18147 since they aren't needed anymore. Cross-refs #18138. [ci skip] | ||||
* | Remove support to activerecord-deprecated_finders | Rafael Mendonça França | 2015-01-02 | 1 | -2/+0 |
| | |||||
* | Minor documentation edits [ci skip] | Robin Dupret | 2014-12-28 | 1 | -8/+8 |
| | |||||
* | warn about reading guides in GitHub | Xavier Noria | 2014-12-23 | 1 | -0/+2 |
| | | | | References #18148. | ||||
* | Do not use line breaks on notes [ci skip] | Andrey Nering | 2014-12-22 | 1 | -6/+2 |
| | | | | References #18138 | ||||
* | Improving Method Chaining section [ci skip] | Andrey Nering | 2014-12-16 | 1 | -5/+28 |
| | |||||
* | Merge pull request #18034 from andreynering/ar-guides-querying | Zachary Scott | 2014-12-15 | 1 | -0/+35 |
|\ | | | | | Adding method chaining section on ActiveRecord querying guide [ci skip] |