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 |
production: |
12 |
adapter: mysql |
13 |
database: bitnami_redmine |
14 |
host: localhost |
15 |
username: root |
16 |
password: bfef10526a |
17 |
port: 3307 |
18 |
encoding: utf8 |
19 |
|
20 |
development: |
21 |
adapter: mysql |
22 |
database: redmine_development |
23 |
host: localhost |
24 |
username: root |
25 |
password: bfef10526a |
26 |
port: 3307 |
27 |
encoding: utf8 |
28 |
|
29 |
# Warning: The database defined as "test" will be erased and
|
30 |
# re-generated from your development database when you run "rake".
|
31 |
# Do not set this db to the same as development or production.
|
32 |
test: |
33 |
adapter: mysql |
34 |
database: redmine_test |
35 |
host: localhost |
36 |
username: root |
37 |
password: bfef10526a |
38 |
port: 3307 |
39 |
encoding: utf8 |