From f1330049e10eabeddc03dc0485a182b7a0791189 Mon Sep 17 00:00:00 2001 From: Ivan Denysov Date: Tue, 9 Nov 2021 22:42:43 +0100 Subject: [PATCH] Clarify what 'running a migration' means It is not obvious to beginners that by 'running a migration' we mean executing the `bin/rails db:migrate` command. --- guides/source/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 3c86e22368..abdb4cbab9 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -1766,7 +1766,7 @@ and in `app/controllers/comments_controller.rb`: end ``` -Within the `article` model, after running a migration to add a `status` column, you would add: +Within the `article` model, after running a migration to add a `status` column using `bin/rails db:migrate` command, you would add: ```ruby class Article < ApplicationRecord