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

rails db:migrateが反映されない

Posted at

#rails db:migrateが反映されない

CSVファイルをインポートするアプリを作っていたのですが、いざimportを実行しても ActiveModel::UnknownAttributeError (unknown attribute 'name' for User.)
のエラ〜メッセージでできない、、、、、

マイグレーションファイルをちょこちょこ書き換えていたせいで混乱しました。

rails cからUser.newで見てみると、マイグレーションが全くできていないことが判明。
その後、rails db:migrateをしても反映されないため、以下のコードを入力して解決しました。

./bin/rails db:migrate:reset

データベースを削除して作り直し、マイグレーションファイルを古い順から適応してくれるそうです。

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?