diff options
author | Gannon McGibbon <gannon.mcgibbon@gmail.com> | 2019-02-15 11:32:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-15 11:32:37 -0500 |
commit | c0e32881950bd7e91af73578e00c07654beabc87 (patch) | |
tree | b5c42ce3bdab3ade09730ef7a8b474af128b19f6 /guides/source | |
parent | 607470c9b40388a5fc454ec9363c7af2d51fcf1e (diff) | |
parent | 2987f34ee14d36f683de838d1b404078db14e406 (diff) | |
download | rails-c0e32881950bd7e91af73578e00c07654beabc87.tar.gz rails-c0e32881950bd7e91af73578e00c07654beabc87.tar.bz2 rails-c0e32881950bd7e91af73578e00c07654beabc87.zip |
Merge pull request #35262 from gmcgibbon/reword_ar_rdbms_note
Reword RDBMS note in ActiveRecord basics
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_basics.md b/guides/source/active_record_basics.md index b0d4bbd2c0..4cf4111bf0 100644 --- a/guides/source/active_record_basics.md +++ b/guides/source/active_record_basics.md @@ -45,7 +45,7 @@ relationships of the objects in an application can be easily stored and retrieved from a database without writing SQL statements directly and with less overall database access code. -NOTE: If you are not familiar enough with relational database management systems (RDBMS) or structured query language (SQL), please go through [this tutorial](https://www.w3schools.com/sql/default.asp) (or [this one](http://www.sqlcourse.com/)) or study them by other means. Understanding how relational databases work is crucial to understanding Active Records and Rails in general. +NOTE: Basic knowledge of relational database management systems (RDBMS) and structured query language (SQL) is helpful in order to fully understand Active Record. Please refer to [this tutorial](https://www.w3schools.com/sql/default.asp) (or [this one](http://www.sqlcourse.com/)) or study them by other means if you would like to learn more. ### Active Record as an ORM Framework |