0
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 3 years have passed since last update.

[Rails] マイグレーションファイルの削除方法

Posted at

#マイグレーションファイルの状態確認
ファイルのステータスがupだと適用されていて、downだと適用されていない状態。
upのままファイルを削除すると、ファイルは存在しないのに適用されているという変な状況になる。
そのため、ターミナル等で下記コマンドを実行し、状態を確認する。

rails db:migrate:status

#ステータスの変更
ステータスがdownになれば削除可能になるので、下記コマンドで変更する。

rails db:migrate:down VERSION=ファイル名.rb

#ファイルの削除
あとは消すだけなので、下記コマンドでファイルを削除。

rm -rf パス/ファイル名.rb

#終わりに
自分用のメモとして、また、Qiita投稿の練習として書きました。
もし誰かの役に立てば幸いです。

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