# MySQL. Versions 4.1 and 5.0 are recommended. # # Install the MYSQL driver # gem install mysql2 # # Ensure the MySQL gem is defined in your Gemfile # gem 'mysql2' # # And be sure to use new-style password hashing: # http://dev.mysql.com/doc/refman/5.0/en/old-client.html development: database: m2 username: m2 password: m2 host: localhost port: 3306 adapter: mysql2 strict: false encoding: utf8 reconnect: true pool: 5 # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". # Do not set this db to the same as development or production. test: database: m2 username: m2 password: m2 host: localhost port: 3306 adapter: mysql2 encoding: utf8 reconnect: true pool: 5 production: database: m2 username: m2 password: m2 host: localhost port: 3306 adapter: mysql2 strict: false encoding: utf8 reconnect: true pool: 5