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

[エラー解消]ActiveRecord::PendingMigrationError

Posted at

すぐに解決はできたが、備忘として。

エラー内容
ActiveRecord::PendingMigrationError

Migrations are pending. To resolve this issue, run: rails db:migrate RAILS_ENV=development

解決方法

何となく英文で分かりますよね。
原因は、db:migrateし忘れていたことによるエラー。
カラム作成したらすぐに**rails db:migrate**しよう。

migrateでもエラーの場合は、DBが作られているか確認が必要。
作られていなかったら、
**rails db:create**で作成してから**rails db:migrate**する。

データベースを作成した際は、使用しているDBアプリに反映しているか確認しておくこと。(私の場合はSequel Pro)

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?