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.

seeds.rbの管理者情報がheroku本番環境に反映されない(Active adminで管理者画面導入時)

Last updated at Posted at 2021-07-19

概要

acitive adminを導入するとseeds.rbに自動でプログラムが組み込まれる。

AdminUser.create!(email: 'admin@example.com', password: 'password', password_confirmation: 'password') if Rails.env.development?

if Rails.env.development? は開発環境の場合のみ実行するという内容である
よって削除し、再デプロイ。heroku run rails db:seed を実行し解決。

事象概要

本番環境にてseeds.rbファイルが反映されない。

発生原因

incident_app/db/seeds.rb ファイルのプログラムにif Rails.env.development?が入っていたため。

AdminUser.create!(email: 'admin@example.com', password: 'password', password_confirmation: 'password') if Rails.env.development?

対処概要

  • incident_app/db/seeds.rb ファイルからif Rails.env.development? を削除
AdminUser.create!(email: 'admin@example.com', password: 'password', password_confirmation: 'password')
  • GitHubにプッシュ
git add .
git commit -m "本番環境にseeds.rbを反映するよう変更"
git push origin HEAD
  • heroku gitにプッシュ
git push heroku master
  • herokuにseeds.rbファイルを反映
heroku run rails db:seed -a herokuに設定しているアプリ名

これで解決するはずです。

0
0
2

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?