1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

use CamelCase convention for "tag" model name

This commit is contained in:
ciastek 2012-01-23 09:48:34 +01:00
parent 342f84ad45
commit 2bcfdec227

View file

@ -1668,7 +1668,7 @@ right in the form where you create the post. First, create a new model to hold
the tags:
<shell>
$ rails generate model tag name:string post:references
$ rails generate model Tag name:string post:references
</shell>
Again, run the migration to create the database table: