RE: Help with upgrade on Windows ยป database.yml
1 |
# MySQL. Versions 4.1 and 5.0 are recommended.
|
---|---|
2 |
#
|
3 |
# Install the MYSQL driver
|
4 |
# gem install mysql2
|
5 |
#
|
6 |
# Ensure the MySQL gem is defined in your Gemfile
|
7 |
# gem 'mysql2'
|
8 |
#
|
9 |
# And be sure to use new-style password hashing:
|
10 |
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
|
11 |
development: |
12 |
adapter: mysql2 |
13 |
encoding: utf8 |
14 |
reconnect: false |
15 |
database: radha |
16 |
pool: 5 |
17 |
username: root |
18 |
password: root1 |
19 |
host: localhost |
20 |
|
21 |
# Warning: The database defined as "test" will be erased and
|
22 |
# re-generated from your development database when you run "rake".
|
23 |
# Do not set this db to the same as development or production.
|
24 |
test: |
25 |
adapter: mysql2 |
26 |
encoding: utf8 |
27 |
reconnect: false |
28 |
database: radha |
29 |
pool: 5 |
30 |
username: root |
31 |
password: root1 |
32 |
host: localhost |
33 |
|
34 |
production: |
35 |
adapter: mysql2 |
36 |
encoding: utf8 |
37 |
reconnect: false |
38 |
database: radha |
39 |
pool: 5 |
40 |
username: root |
41 |
password: root1 |
42 |
host: localhost |