diff options
author | schneems <richard.schneeman@gmail.com> | 2012-10-01 20:56:03 -0400 |
---|---|---|
committer | schneems <richard.schneeman@gmail.com> | 2012-10-02 11:31:24 -0400 |
commit | e8bdbef00a26fd469c255cd5cfb4b3c71278beb4 (patch) | |
tree | 28290d025f788c6dca9a31d0611a3fade625b244 /guides | |
parent | ae4448253d5b710bd754d7a6dc1dbd7391c832be (diff) | |
download | rails-e8bdbef00a26fd469c255cd5cfb4b3c71278beb4.tar.gz rails-e8bdbef00a26fd469c255cd5cfb4b3c71278beb4.tar.bz2 rails-e8bdbef00a26fd469c255cd5cfb4b3c71278beb4.zip |
add command line $ tip for new programmers
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/migrations.md | 2 |
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 |