aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorschneems <richard.schneeman@gmail.com>2012-10-01 20:56:03 -0400
committerschneems <richard.schneeman@gmail.com>2012-10-02 11:31:24 -0400
commite8bdbef00a26fd469c255cd5cfb4b3c71278beb4 (patch)
tree28290d025f788c6dca9a31d0611a3fade625b244 /guides/source
parentae4448253d5b710bd754d7a6dc1dbd7391c832be (diff)
downloadrails-e8bdbef00a26fd469c255cd5cfb4b3c71278beb4.tar.gz
rails-e8bdbef00a26fd469c255cd5cfb4b3c71278beb4.tar.bz2
rails-e8bdbef00a26fd469c255cd5cfb4b3c71278beb4.zip
add command line $ tip for new programmers
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/migrations.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/migrations.md b/guides/source/migrations.md
index 6f9b435c5c..f02e86b420 100644
--- a/guides/source/migrations.md
+++ b/guides/source/migrations.md
@@ -235,6 +235,8 @@ adding these columns will also be created. For example, running
$ rails generate model Product name:string description:text
```
+TIP: All lines starting with a dollar sign `$` are intended to be run on the command line.
+
will create a migration that looks like this
```ruby