OSDN Git Service

Added string "cant_link_an_issue_with_a_descendant" to translations missed in #443
[redminele/redmine.git] / config / database.yml.example
1 # MySQL (default setup).
2
3 production:
4   adapter: mysql
5   database: redmine
6   host: localhost
7   username: root
8   password:
9   encoding: utf8
10  
11 development:
12   adapter: mysql
13   database: redmine_development
14   host: localhost
15   username: root
16   password:
17   encoding: utf8
18
19 # Warning: The database defined as "test" will be erased and
20 # re-generated from your development database when you run "rake".
21 # Do not set this db to the same as development or production.
22 test:
23   adapter: mysql
24   database: redmine_test
25   host: localhost
26   username: root
27   password:
28   encoding: utf8
29
30 test_pgsql:
31   adapter: postgresql
32   database: redmine_test
33   host: localhost
34   username: postgres
35   password: "postgres"
36
37 test_sqlite3:
38   adapter: sqlite3
39   database: db/test.db