about summary refs log tree commit diff
path: root/config/database.yml
blob: 13e176a2d40393cf804103e8db43d152a4e3d23d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
default: &default
  adapter: postgresql
  pool: 5
  timeout: 5000

development:
  <<: *default
  database: mastodon_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: mastodon_test

production:
  <<: *default
  database: mastodon_production