31 lines
872 B
YAML
31 lines
872 B
YAML
|
default: &default
|
||
|
# For details on connection pooling, see Rails configuration guide
|
||
|
# http://guides.rubyonrails.org/configuring.html#database-pooling
|
||
|
pool: 50
|
||
|
timeout: 5000
|
||
|
encoding: utf8
|
||
|
# postgresql -----------------------------------------------------------------
|
||
|
adapter: postgresql
|
||
|
# username: <username>
|
||
|
# password: <password>
|
||
|
# mysql ----------------------------------------------------------------------
|
||
|
# adapter: mysql2
|
||
|
# host: localhost
|
||
|
# username: <username>
|
||
|
# password: <password>
|
||
|
|
||
|
production:
|
||
|
<<: *default
|
||
|
database: zammad_prod
|
||
|
|
||
|
development:
|
||
|
<<: *default
|
||
|
database: zammad_development
|
||
|
|
||
|
# Warning: The database defined as "test" will be erased and
|
||
|
# re-generated from your development database when you run "rake".
|
||
|
# Do not set this db to the same as development or production.
|
||
|
test:
|
||
|
<<: *default
|
||
|
database: zammad_test
|