Ticket #8049: postgresql_config.diff
| File postgresql_config.diff, 1.6 kB (added by FooBarWidget, 1 year ago) |
|---|
-
railties/configs/databases/postgresql.yml
old new 1 # PostgreSQL versions 7.4 - 8.11 # PostgreSQL. Versions 7.4 and 8.x are supported. 2 2 # 3 # Get the C bindings: 4 # gem install postgres 5 # or use the pure-Ruby bindings on Windows: 6 # gem install postgres-pr 3 # Install the ruby-postgres driver: 4 # gem install ruby-postgres 5 # On MacOS 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. 7 11 development: 8 12 adapter: postgresql 9 13 database: <%= app_name %>_development 10 14 username: <%= app_name %> 11 15 password: 12 16 13 # Connect on a TCP socket. Omitted by default since the client uses a14 # domain socket that doesn't need configuration. Windows does not have17 # Connect on a TCP socket. Omitted by default since the client uses a 18 # domain socket that doesn't need configuration. Windows does not have 15 19 # domain sockets, so uncomment these lines. 16 20 #host: localhost 17 21 #port: 5432 18 22 19 # Schema search path. The server defaults to $user,public23 # Schema search path. The server defaults to $user,public. 20 24 #schema_search_path: myapp,sharedapp,public 21 25 22 # Character set encoding. The server defaults to sql_ascii.26 # Character set encoding. The server defaults to SQL_ASCII. 23 27 #encoding: UTF8 24 28 25 29 # Minimum log levels, in increasing order: