From f800007c84d33ea82cad0f684616701893472ad8 Mon Sep 17 00:00:00 2001 From: Prathamesh Sonpatki Date: Thu, 17 Dec 2015 19:07:03 +0530 Subject: Fix section about ApplicationRecord in upgrading guide [ci skip] --- guides/source/upgrading_ruby_on_rails.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'guides/source/upgrading_ruby_on_rails.md') diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index 58fda3aa0d..148890bf77 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -55,12 +55,12 @@ Upgrading from Rails 4.2 to Rails 5.0 ### Active Record models now inherit from ApplicationRecord by default -In Rails 4.2 an Active Job inherits from `ActiveRecord::Base`. In Rails 5.0 models -inherit from `ApplicationRecord`. +In Rails 4.2 an Active Record model inherits from `ActiveRecord::Base`. In Rails 5.0, +all models inherit from `ApplicationRecord`. `ApplicationRecord` is a new superclass for all app models, analogous to app -controllers subclassing ApplicationController instead of -ActionController::Base. This gives apps a single spot to configure app-wide +controllers subclassing `ApplicationController` instead of +`ActionController::Base`. This gives apps a single spot to configure app-wide model behavior When upgrading from Rails 4.2 to Rails 5.0 you need to create an -- cgit v1.2.3