Mercurial > hg > soundsoftware-site
annotate config/database.yml.example @ 949:ebfda4c68b7a bug_505
Fixes Bug #505 (introduced in Bug #97): now also sends emails to all users members of a group when the group is added to a project.
| author | luisf <luis.figueira@eecs.qmul.ac.uk> |
|---|---|
| date | Thu, 02 Aug 2012 19:40:23 +0100 |
| parents | cbb26bc654de |
| children | 433d4f72a19b |
| rev | line source |
|---|---|
| Chris@0 | 1 # MySQL (default setup). |
| Chris@0 | 2 |
| Chris@0 | 3 production: |
| Chris@0 | 4 adapter: mysql |
| Chris@0 | 5 database: redmine |
| Chris@0 | 6 host: localhost |
| Chris@0 | 7 username: root |
| Chris@0 | 8 password: |
| Chris@0 | 9 encoding: utf8 |
| Chris@909 | 10 |
| Chris@0 | 11 development: |
| Chris@0 | 12 adapter: mysql |
| Chris@0 | 13 database: redmine_development |
| Chris@0 | 14 host: localhost |
| Chris@0 | 15 username: root |
| Chris@0 | 16 password: |
| Chris@0 | 17 encoding: utf8 |
| Chris@0 | 18 |
| Chris@0 | 19 # Warning: The database defined as "test" will be erased and |
| Chris@0 | 20 # re-generated from your development database when you run "rake". |
| Chris@0 | 21 # Do not set this db to the same as development or production. |
| Chris@0 | 22 test: |
| Chris@0 | 23 adapter: mysql |
| Chris@0 | 24 database: redmine_test |
| Chris@0 | 25 host: localhost |
| Chris@0 | 26 username: root |
| Chris@0 | 27 password: |
| Chris@0 | 28 encoding: utf8 |
| Chris@0 | 29 |
| Chris@0 | 30 test_pgsql: |
| Chris@0 | 31 adapter: postgresql |
| Chris@0 | 32 database: redmine_test |
| Chris@0 | 33 host: localhost |
| Chris@0 | 34 username: postgres |
| Chris@0 | 35 password: "postgres" |
| Chris@0 | 36 |
| Chris@0 | 37 test_sqlite3: |
| Chris@0 | 38 adapter: sqlite3 |
| Chris@210 | 39 database: db/test.sqlite3 |
