LoginSignup
1
1

More than 3 years have passed since last update.

rails g model/migrationの違い

Last updated at Posted at 2020-02-26

rails g model...

main.rb
rails g model モデル名 カラム名:データ型...
rails g model Graph date:date weight:float user:references

Graphがモデル名

モデル名とテーブルとデータができる

rails g migration...

main.rb
rails g migration add_user_id_to_posts

postsテーブルにuser_idカラムを加える

rails g model
rails g migration
はいずれも
rails db:migrate を実行する必要あり

rails db:migrate

main.rb
rails db:migrate

これがないとデータベースに反映されません

1
1
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
1
1