Add pg gem.
[ecs.git] / config / database.yml
blobd462838dc6926e3fae81233ab38ff9e416ed384e
1 base: &base
2   adapter: postgresql
3   encoding: unicode
4   pool: 5
5   username: mb7
6   password: 
8 development:
9   database: ecs_development
10   <<: *base
12   # Connect on a TCP socket. Omitted by default since the client uses a
13   # domain socket that doesn't need configuration. Windows does not have
14   # domain sockets, so uncomment these lines.
15   #host: localhost
16   #port: 5432
18   # Schema search path. The server defaults to $user,public
19   #schema_search_path: myapp,sharedapp,public
21   # Minimum log levels, in increasing order:
22   #   debug5, debug4, debug3, debug2, debug1,
23   #   log, notice, warning, error, fatal, and panic
24   # The server defaults to notice.
25   #min_messages: warning
27 # Warning: The database defined as "test" will be erased and
28 # re-generated from your development database when you run "rake".
29 # Do not set this db to the same as development or production.
30 test:
31   database: ecs_test
32   <<: *base
34 production:
35   database: ecs_production
36   <<: *base