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

前端 未结 16 1464
挽巷
挽巷 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 12:52

    The problem is on your file config/database.yml

    You should have a line that specify that the adapter is mysql2 (and not mysql)

    adapter: mysql2
    

    Instead of

    adapter: mysql
    

提交回复
热议问题