I am attempting to remotely connect to a MySQL database using ruby on rails.
In my database.yml:
development:
adapter: mysql
database: peer
host: host
port: 3306
username: root
password: password
I then go to do a rake db:migrate and get this error
Mysql::Error: The 'InnoDB' feature is disabled; you need MySQL built with 'InnoDB' to have it working: CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
Now after some searching, I found that this was an error on Windows Servers with MySQL and I needed to go into the my.ini file and comment out skip-innodb. When I went to do that however, that line wasn't in that file but in a different one named "my-innodb-heavy-4g.ini"
I found the command in the line, but it was already commented out. And now I am at a loss on what to do next.
This application is going to be connected to multiple databases as well, I just wanted to see if I could connect to the remote one first.