Sha256: 528a52698f1f1a3f178daf9847e92201334018523c37ba81133b606d021b3798

Contents?: true

Size: 891 Bytes

Versions: 8

Compression:

Stored size: 891 Bytes

Contents

# MySQL (default setup).  Versions 4.1 and 5.0 are recommended.
#
# Install the MySQL driver:
#   gem install mysql
# On MacOS X:
#   gem install mysql -- --include=/usr/local/lib
# On Windows:
#   gem install mysql
#       Choose the win32 build.
#       Install MySQL and put its /bin directory on your path.
#
# And be sure to use new-style password hashing:
#   http://dev.mysql.com/doc/refman/5.0/en/old-client.html
development:
  adapter: mysql
  database: sample_rails_project_development
  username: sample_project
  password: hello
  socket: /tmp/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: mysql
  database: sample_rails_project_test
  username: sample_project
  password: hello
  socket: /tmp/mysql.sock

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
jstorimer-deep-test-2.0.0 sample_rails_project/config/database.yml
jstorimer-deep-test-1.4.0 sample_rails_project/config/database.yml
jstorimer-deep-test-1.3.0 sample_rails_project/config/database.yml
jstorimer-deep-test-1.2.0 sample_rails_project/config/database.yml
jstorimer-deep-test-1.1.0 sample_rails_project/config/database.yml
jstorimer-deep-test-1.0.0 sample_rails_project/config/database.yml
jstorimer-deep-test-0.2.0 sample_rails_project/config/database.yml
jstorimer-deep-test-0.1.0 sample_rails_project/config/database.yml