volunteers/config/database.yml

21 lines
450 B
YAML
Raw Normal View History

2022-11-21 11:10:04 +01:00
default: &default
adapter: postgresql
encoding: unicode
2022-11-21 11:16:59 +01:00
username: postgres
2022-11-21 11:10:04 +01:00
development:
<<: *default
2023-01-11 16:54:27 +01:00
database: volunteers_development
2022-11-21 11:10:04 +01:00
# 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
2023-01-11 16:54:27 +01:00
database: volunteers_test
2022-11-21 11:10:04 +01:00
#
production:
<<: *default
2023-01-11 16:54:27 +01:00
database: volunteers_production