##// END OF EJS Templates
Merged r9409 from trunk....
Jean-Philippe Lang -
r9276:2c0ba78f7092
parent child
Show More
@@ -1,39 +1,41
1 # MySQL (default setup).
1 # Default setup is given for MySQL with ruby1.8. If you're running Redmine
2 # with MySQL and ruby1.9, replace the adapter name with `mysql2`.
3 # Examples for PostgreSQL and SQLite3 can be found at the end.
2
4
3 production:
5 production:
4 adapter: mysql
6 adapter: mysql
5 database: redmine
7 database: redmine
6 host: localhost
8 host: localhost
7 username: root
9 username: root
8 password:
10 password:
9 encoding: utf8
11 encoding: utf8
10
12
11 development:
13 development:
12 adapter: mysql
14 adapter: mysql
13 database: redmine_development
15 database: redmine_development
14 host: localhost
16 host: localhost
15 username: root
17 username: root
16 password:
18 password:
17 encoding: utf8
19 encoding: utf8
18
20
19 # Warning: The database defined as "test" will be erased and
21 # Warning: The database defined as "test" will be erased and
20 # re-generated from your development database when you run "rake".
22 # re-generated from your development database when you run "rake".
21 # Do not set this db to the same as development or production.
23 # Do not set this db to the same as development or production.
22 test:
24 test:
23 adapter: mysql
25 adapter: mysql
24 database: redmine_test
26 database: redmine_test
25 host: localhost
27 host: localhost
26 username: root
28 username: root
27 password:
29 password:
28 encoding: utf8
30 encoding: utf8
29
31
30 test_pgsql:
32 test_pgsql:
31 adapter: postgresql
33 adapter: postgresql
32 database: redmine_test
34 database: redmine_test
33 host: localhost
35 host: localhost
34 username: postgres
36 username: postgres
35 password: "postgres"
37 password: "postgres"
36
38
37 test_sqlite3:
39 test_sqlite3:
38 adapter: sqlite3
40 adapter: sqlite3
39 database: db/test.sqlite3
41 database: db/test.sqlite3
General Comments 0
You need to be logged in to leave comments. Login now