How may i change my database from MYSQL to Sql server in Rails 4
What configuration i may specify in database.yml file and what all gem i may need to add for that.Please help. :)
How may i change my database from MYSQL to Sql server in Rails 4
What configuration i may specify in database.yml file and what all gem i may need to add for that.Please help. :)
Add this to gemfile
gem install mysql2
And this to database.yml
default: &default
adapter: mysql2
encoding: utf8
host: 127.0.0.1
port: 3306
development:
<<: *default
database: development_db_name
username: YOUR_USER_NAME
password: YOUR_PASSWORD
test:
<<: *default
database: test_db_name
username: YOUR_USER_NAME
password: YOUR_PASSWORD
production:
<<: *default
database: production_db_name
username: YOUR_USER_NAME
password: YOUR_PASSWORD