前提
cloud9上でRoRのアプリを作成しています。
前回質問でうまく行かなかったので、
heroku createをし直し、アップロードし、heroku上でのmigrationを行いました。
状況
heroku run rails db:migrateをすると
rails aborted!
Gem::LoadError: Error loading the 'postgresql' Active Record adapter. Missing a gem it depends on? pg is not part of the bundle. Add it to your Gemfile.
と言うエラーメッセージが出ます。
関連ソース
Gemfile
1〜〜〜〜中略〜〜〜〜 2group :development, :test do 3 # Call 'byebug' anywhere in the code to stop execution and get a debugger console 4 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 5end 6 7group :development do 8 # Access an interactive console on exception pages or by calling 'console' anywhere in the code. 9 gem 'web-console', '>= 3.3.0' 10 gem 'listen', '>= 3.0.5', '< 3.2' 11 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring 12 gem 'spring' 13 gem 'spring-watcher-listen', '~> 2.0.0' 14 # Use sqlite3 as the database for Active Record 15 gem 'sqlite3' 16end 17 18group :test do 19 # Adds support for Capybara system testing and selenium driver 20 gem 'capybara', '>= 2.15' 21 gem 'selenium-webdriver' 22 # Easy installation and use of chromedriver to run system tests with Chrome 23 gem 'chromedriver-helper' 24 # Use sqlite3 as the database for Active Record 25 gem 'sqlite3' 26end 27 28group :production do 29 gem 'pg', '1.1.3' 30 gem 'rails_12factor' 31end 32 33〜〜〜〜中略〜〜〜〜
database.yml
1ファイル名 database.yml 2 3development: 4 <<: *default 5 database: db/development.sqlite3 6 7# Warning: The database defined as "test" will be erased and 8# re-generated from your development database when you run "rake". 9# Do not set this db to the same as development or production. 10test: 11 <<: *default 12 database: db/test.sqlite3 13 14production: 15 <<: *default 16 adapter: postgresql 17 encoding: unicode 18 pool: 5 19
やったこと
bundle install —without production
を実行し、
git push heroku
の後、
heroku run rails db:migrate
そのほかにもgemのpgのバージョンは変えたりしました。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。