Sha256: af503930cc424d4bab4d07fca1a9457ef175fda4697f57bf0343f9672bacfdb1
Contents?: true
Size: 1.08 KB
Versions: 30
Compression:
Stored size: 1.08 KB
Contents
<% app_name = ENV['APP_NAME'] -%> # 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: adapter: mysql2 encoding: utf8 reconnect: false database: <%= app_name %>_dev pool: 5 username: <%= app_name %> password: <%= app_name %> socket: /var/lib/mysql/mysql.sock # 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: adapter: mysql2 encoding: utf8 reconnect: false database: <%= app_name %>_test pool: 5 username: <%= app_name %> password: <%= app_name %> socket: /var/lib/mysql/mysql.sock production: adapter: mysql2 encoding: utf8 reconnect: false database: <%= app_name %>_pro pool: 5 username: <%= app_name %> password: <%= app_name %> socket: /var/lib/mysql/mysql.sock
Version data entries
30 entries across 30 versions & 1 rubygems