mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
30 lines
837 B
YAML
30 lines
837 B
YAML
# this is a database config sample for zammad ready to use with a postgresql db
|
|
# copy or symlink this file to config/database.yml to use it
|
|
|
|
default: &default
|
|
# For details on connection pooling, see Rails configuration guide
|
|
# http://guides.rubyonrails.org/configuring.html#database-pooling
|
|
pool: 50
|
|
encoding: utf8
|
|
adapter: postgresql
|
|
# username: zammad
|
|
# password:
|
|
|
|
# If the database server is not on localhost, you can set hostname and port:
|
|
# host:
|
|
# port:
|
|
|
|
production:
|
|
<<: *default
|
|
database: zammad_production
|
|
|
|
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
|