0
1

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 1 year has passed since last update.

railsコマンドまとめ[備忘録:随時追加予定]

Posted at

コントローラの自動生成

rails generate controller コントローラ名 アクション名
rails generate controller StaticPages index help

作成したコントローラの削除

rails destroy controller コントローラ名 アクション名
rails destroy controller StaticPages index help

モデルの自動生成

rails generate model モデル名 データ名:データ型
rails generate model User name:string email:string

作成したモデルの削除

rails destory model モデル名 データ名:データ型
rails destory model User name:string email:string

データベースのマイグレーションを変更

rails db:migrate

データベースのマイグレーションを一つ前に戻したい時

rails db:rollback

データベースのマイグレーションを最初の状態にしたい時

rails db:migrate VERSION=0

ちなみに、railsではマイグレーションするたびにバージョンが番号で記録されるので、上記のoptionの[VERSION =]の数字を指定すれば、そのバージョンに戻すことができます。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?