0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Railsのコントローラ名とモデル名の書き方について【初心者】

Last updated at Posted at 2019-11-12

少し気になっていたので以下のコマンドについて整理してみました。

  • rails g controller コントローラ名
  • rails g model モデル名

コントローラ名は複数形

例) rails g controller tests

モデル名は単数形

例) rails g model test

※それぞれの名前のイニシャルは大文字でも小文字でも結果は変わりません。

例) rails g controller tests と rails g controller Tests の結果は同じです。
例) rails g model test と rails g model Test の結果は同じです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?