Sha256: cde714a68e578fb055e3d9e400410dcbe268f056c6565a9a500f396d1a6b5d8a
Contents?: true
Size: 812 Bytes
Versions: 58
Compression:
Stored size: 812 Bytes
Contents
# 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 %> pool: 5 username: root password: socket: /var/run/mysqld/mysqld.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: root password: socket: /var/run/mysqld/mysqld.sock production: adapter: mysql2 encoding: utf8 reconnect: true database: <%= app_name %> pool: 5 username: root password: socket: /var/run/mysqld/mysqld.sock
Version data entries
58 entries across 58 versions & 3 rubygems