LoginSignup
0
0

More than 3 years have passed since last update.

db:maigrate:resetでエラー

Last updated at Posted at 2020-10-19

rails db:maigrate:resetがエラーになったとき

環境
Rails 5.2.4.4

エラー内容
rails db:migrate:resetをした時にText file busy @ apply2filesのエラーが出た。

解決法
rails db:reset

$ rm db/development.sqlite3
$ bin/rails db:setup

rails db:migrate:reset

$ rm db/development.sqlite3
$ bin/rails db:create db:migrate

それぞれこちらで実行できました。
windows環境で起きることがあるみたいです。

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