Mercurial > hg > soundsoftware-site
annotate config/.svn/text-base/database.yml.example.svn-base @ 507:0c939c159af4 redmine-1.2
Update to Redmine 1.2.1 on 1.2-stable branch (Redmine SVN rev 6270)
author | Chris Cannam |
---|---|
date | Thu, 14 Jul 2011 10:32:19 +0100 |
parents | 0579821a129a |
children |
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@0 | 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 |