seed_fuを利用してCSVファイルを一覧表示しているのですが、ローカルではしっかり反映されています。
ただ、herokuで同様に以下のコマンドを打ち込んで、反映されません。
どのようにすれば、herokuでも、ローカルのように一覧表示されますでしょうか。
◆実施したherokuコマンド
・git push heroku main //デプロイはできています
・heroku run rails db:migrate // Running rails db:migrate on...と表示され、以下のように表示されます。
・heroku run rails db:seed_fu //Running rails db:seed_fu on...xxx up, run.7916 (Free) で終わります(数字はいつも違います)
◆やってみたこと(heroku)
・heroku run rails db:seed // seed.rbの方は何も記載していないのでもちろん反応しません
・heroku run bundle exec rails db:seed_fu RAILS_ENV=production
・heroku run rails db:migrate:reset DISABLE_DATABASE_ENVIRONMENT_CHECK=1 //一度リセットしようと思い、”heroku run rails db:migrate:reset”と打ち込んだら、DISABLE~以降をつけてなさいとエラー(以下)が出たのでこれでリセットしました。何か問題あったでしょうか?
rails aborted!
ActiveRecord::ProtectedEnvironmentError: You are attempting to run a destructive action against your 'production' database.
If you are sure you want to continue, run the same command with the environment variable:
DISABLE_DATABASE_ENVIRONMENT_CHECK=1
/app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.4.8/lib/active_record/tasks/database_tasks.rb:63:incheck_protected_environments!' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.4.8/lib/active_record/railties/databases.rake:15:in
block (2 levels) in <main>'
/app/vendor/bundle/ruby/2.6.0/gems/railties-6.0.4.8/lib/rails/commands/rake/rake_command.rb:23:inblock in perform' /app/vendor/bundle/ruby/2.6.0/gems/railties-6.0.4.8/lib/rails/commands/rake/rake_command.rb:20:in
perform'
/app/vendor/bundle/ruby/2.6.0/gems/railties-6.0.4.8/lib/rails/command.rb:48:ininvoke' /app/vendor/bundle/ruby/2.6.0/gems/railties-6.0.4.8/lib/rails/commands.rb:18:in
<main>'
/app/vendor/bundle/ruby/2.6.0/gems/bootsnap-1.11.1/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30:inrequire' /app/vendor/bundle/ruby/2.6.0/gems/bootsnap-1.11.1/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30:in
require'
/app/bin/rails:9:in `<main>'
Tasks: TOP => db:migrate:reset => db:drop => db:check_protected_environments
(See full trace by running task with --trace)
・上記下段に記載あるように、
$ heroku run rails db:drop DISABLE_DATABASE_ENVIRONMENT_CHECK=1
$ heroku run rails db:check_protected_environments
を実行し、その後、
$ heroku run rails db:create
$ heroku run rails db:migrate
$ heroku run rails db:seed_fu
を実行しましたが、やはり反映されませんでした。
どなたか気になるところだけでもあればご教示いただけますと幸いです!
◆やってみたこと(seed_fu)
ruby
1csv = CSV.read('db/items.csv', encoding: 'UTF-16') 2csv.each do |row| 3Item.seed(:item_name, :description, :image_url) do |s| 4s.item_name = row[1] 5s.description = row[2] 6s.image_url = row[3] 7s.star = row[4] 8end 9end
↓herokuはid連番の必要がある?という記事も見つけたので、item_idカラムを作成、番号を振ってみましたが、変わりませんでした。ここが原因なのかどうかもわからず。。m(_ _)m
https://qiita.com/yunyun_engineer/items/f719c9f7e885d4cab1e1
↓
ruby
1require 'csv' 2 3csv = CSV.read('db/items.csv', encoding: 'UTF-16') 4csv.each do |row| 5 item_id = row[0] 6 item_name = row[1] 7 description = row[2] 8 image_url = row[3] 9 star = row[4] 10 11 Item.seed(:item_id) do |s| 12 s.item_id = item_id 13 s.item_name = item_name 14 s.description = description 15 s.image_url = image_url 16 s.star = star 17 end 18end

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。