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

Rails ロールバックの手順

Last updated at Posted at 2021-11-24

#はじめに
自分の学びのアウトプットのため、こちらの記事を参考にさせていただきながら書きました。
【Rails】$rails db:rollbackしたい時の間違えない手順

#手順
###1.マイグレートのバージョンを確認

コンソール
$ rails db:version
Current version: 20211119053634

###2.ロールバックを実行

コンソール
#一つ前のバージョンに戻す
$ rails db:rollback
コンソール
#指定したバージョンまでなかったことにする
$ rails db:rollback STEP=◯◯○◯◯○◯◯○

###3.migrateされる前の状態に戻っているか確認

コンソール
$ rails db:abort_if_pending_migrations
You have 1 pending migrations:
  20211119020307 AddAutoScalingSupportedToWebServers
  20211119053634 AddWebServersComment

###4.マイグレーションファイルを修正

###5.migrateを実行

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