Renamed helpers to correspond to renamed Controller classes.
[merb_radiant.git] / lib / generators / instance / templates / databases / .svn / text-base / postgresql.yml.svn-base
blob3c146c13a1751923c7a9ed309c22cca7c597af3c
1 # PostgreSQL versions 7.4 - 8.1
3 # Get the C bindings:
4 #   gem install postgres
5 # or use the pure-Ruby bindings on Windows:
6 #   gem install postgres-pr
7 development:
8   adapter: postgresql
9   database: <%= app_name %>_development
10   username: <%= app_name %>
11   password:
13   # Connect on a TCP socket.  Omitted by default since the client uses a
14   # domain socket that doesn't need configuration.  Windows does not have
15   # domain sockets, so uncomment these lines.
16   #host: localhost
17   #port: 5432
19   # Schema search path.  The server defaults to $user,public
20   #schema_search_path: myapp,sharedapp,public
22   # Character set encoding.  The server defaults to sql_ascii.
23   #encoding: UTF8
25   # Minimum log levels, in increasing order:
26   #   debug5, debug4, debug3, debug2, debug1,
27   #   info, notice, warning, error, log, fatal, or panic
28   # The server defaults to notice.
29   #min_messages: warning
31 # Warning: The database defined as 'test' will be erased and
32 # re-generated from your development database when you run 'rake'.
33 # Do not set this db to the same as development or production.
34 test:
35   adapter: postgresql
36   database: <%= app_name %>_test
37   username: <%= app_name %>
38   password:
40 production:
41   adapter: postgresql
42   database: <%= app_name %>_production
43   username: <%= app_name %>
44   password: