LoginSignup
0
0

More than 3 years have passed since last update.

モデル、コントローラーの生成

Posted at

自分用のメモです!

コントローラーの生成

ex) (newアクションを持つ)userコントローラーの生成

ターミナル
rails g controller Users new

モデルの作成

ex) (name,emailカラムをもつ)userモデルの生成

ターミナル
rails g model User name:string email:string

コントローラーの削除

ex) userコントローラーの削除

ターミナル
rails destroy controller Users

モデルの削除

 
ex) userモデルの削除

ターミナル
rails destroy model User
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