blob: 08d26576062143eb2b2e6788fd7d0c5ec8758baf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  | 
default: &default
  adapter: postgresql
  encoding: unicode
  pool: 5
  port: 5432
  host: localhost
  schema_search_path: "public"
  username: chouette
  password: chouette
development:
  <<: *default
  database: chouette_dev
# 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: chouette_test
production:
  <<: *default
  database: chouette2
 
  |