aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorShakib Hossain <shakib609@users.noreply.github.com>2016-01-22 02:25:55 +0600
committerShakib Hossain <shakib609@users.noreply.github.com>2016-01-22 02:25:55 +0600
commit6b426676073159196ec876142112de31f811567c (patch)
treea54ae998da5a7f164dc34ee772ae6cb7965f02aa /guides/source/getting_started.md
parent9a99c7cef533e985e67af5de0e65a39f452b7db9 (diff)
downloadrails-6b426676073159196ec876142112de31f811567c.tar.gz
rails-6b426676073159196ec876142112de31f811567c.tar.bz2
rails-6b426676073159196ec876142112de31f811567c.zip
[ci skip] fix #23157
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index eae37f648d..9677ab1583 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -1540,6 +1540,11 @@ This is very similar to the `Article` model that you saw earlier. The difference
is the line `belongs_to :article`, which sets up an Active Record _association_.
You'll learn a little about associations in the next section of this guide.
+The (`:references`) keyword used in the bash command is a special data type for models.
+It creates a new column on your database table with the provided model name appended with an `_id`
+that can hold integer values. You can get a better understanding after analyzing the
+`db/schema.rb` file below.
+
In addition to the model, Rails has also made a migration to create the
corresponding database table: