Sha256: 7821e9e7b62204e7287a93eaa54f334bd8ed2cb32cf5a5e3332b02fb4fbcec8a
Contents?: true
Size: 768 Bytes
Versions: 2
Compression:
Stored size: 768 Bytes
Contents
# MySQL. Versions 4.1 and 5.0 are recommended. # # Install the MySQL driver: # gem install activerecord-jdbcmysql-adapter # # Configure Using Gemfile # gem 'activerecord-jdbcmysql-adapter' # # And be sure to use new-style password hashing: # http://dev.mysql.com/doc/refman/5.0/en/old-client.html # default: &default adapter: mysql username: root password: host: localhost development: <<: *default database: <%= app_name %>_development # 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: <<: *default database: <%= app_name %>_test production: <<: *default database: <%= app_name %>_production
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
railties-4.1.0.beta2 | lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml |
railties-4.1.0.beta1 | lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml |