1
2

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

Rails のお作法

コントローラーを作るとき

$ bundle exec rails g controller homes index

コントローラーの中にはたくさんのメソッドを作るので複数形でコマンドを打つ!!!

コントローラーを削除するとき

$ bundle exec rails d controller homes index

gがdに変わっただけ。

新しくテーブルを作るとき

$ bundle exec rails g model User account:string name:string

このときは単数形でコマンドを打つ!!!!

後からテーブルにカラムを追加したいとき

$ bundle exec rails g migration AddEmailToUsers email:string

データベースを作成する一発目のコマンド

$ bundle exec rails db:create

これでdatabase.yml に設定されている通りの DB が作成できる。

テーブル、カラムの変更をデータベースに反映させるコマンド

$ bundle exec rails db:migrate

データベースの情報を完全消去して空っぽにするコマンド

$ rails db:migrate:reset

データベース系の主なコマンド

  1. rails db:create
  2. rails db:drop
  3. rails db:migrate
  4. rails db:rollback
  5. rails db:seed
  6. rails db:reset
  7. rails db:migrate:reset

使い方は逐一調べよう。

1
2
1

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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?