Upgraded Rails and RSpec
[monkeycharger.git] / vendor / rails / railties / configs / databases / postgresql.yml
blobc1b911a9a4fa57b58977d3355622e8235f250f1a
1 # PostgreSQL. Versions 7.4 and 8.x are supported.
3 # Install the ruby-postgres driver:
4 #   gem install ruby-postgres
5 # On Mac OS X:
6 #   gem install ruby-postgres -- --include=/usr/local/pgsql
7 # On Windows:
8 #   gem install ruby-postgres
9 #       Choose the win32 build.
10 #       Install PostgreSQL and put its /bin directory on your path.
11 development:
12   adapter: postgresql
13   encoding: unicode
14   database: <%= app_name %>_development
15   username: <%= app_name %>
16   password:
18   # Connect on a TCP socket. Omitted by default since the client uses a
19   # domain socket that doesn't need configuration. Windows does not have
20   # domain sockets, so uncomment these lines.
21   #host: localhost
22   #port: 5432
24   # Schema search path. The server defaults to $user,public
25   #schema_search_path: myapp,sharedapp,public
27   # Minimum log levels, in increasing order:
28   #   debug5, debug4, debug3, debug2, debug1,
29   #   log, notice, warning, error, fatal, and panic
30   # The server defaults to notice.
31   #min_messages: warning
33 # Warning: The database defined as 'test' will be erased and
34 # re-generated from your development database when you run 'rake'.
35 # Do not set this db to the same as development or production.
36 test:
37   adapter: postgresql
38   encoding: unicode
39   database: <%= app_name %>_test
40   username: <%= app_name %>
41   password:
43 production:
44   adapter: postgresql
45   encoding: unicode
46   database: <%= app_name %>_production
47   username: <%= app_name %>
48   password: