2
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.

間違って作成したマイグレーションファイルの削除方法

Posted at

はじめに
日々の勉強をアウトプットしていきたいと考えております。自分なりの理解した表現でアウトプットしていくので、初学者のため、誤りもあるかと思います。その際はご指摘頂けると幸いです。

まずはrails db:migrate:statusでマイグレーションの状態を調べる
image.png
up → マイグレーションファイル実行済み
down → マイグレーションファイル未実行

rails db:rollbackを一度、実行したため、一番下のマイグレーションファイルが間違えて作成してしまったデータベースでdownとなっている。
 そのため、削除方法はdownになっていれば、そのままVSコード上にあるマイグレーションファイルを右クリックして、削除ボタンをクリックすれば良い。

実際にマイグレーションファイルが削除されているかをrails db:migrate:statusを実行して確認する。

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