Please install mysql adapter 'gem install activerecord-mysql-adapter'

前端 未结 16 1401
挽巷
挽巷 2020-12-28 12:23

I\'m having trouble finding a solution to this problem. I\'m getting the error:

Please install the mysql adapter: \'gem install activerecord-mysql-adapter\'
         


        
16条回答
  •  囚心锁ツ
    2020-12-28 13:06

    1) You need to update your config/database.yml file and change:

    adapter: mysql
    

    into

    adapter: mysql2
    

    2) You need to update your Gemfile and explicitly add activerecord-mysql2-adapter dependency there:

    gem 'mysql2'
    gem 'activerecord-mysql2-adapter'
    

提交回复
热议问题