My application staging environment is using mysql
adapter in database.yml
file.
but i have included mysql2
gem in my gemfile, due to which i am having msql
adapter error.
file is like this?
staging:
adapter: mysql
database: myapp
username: xyz
password: IiVTKgcJCt
host: ec2-50-16-127-64.compute-1.amazonaws.com
reconnect: true
how can i change adapter to mysql2
?