Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 240
- Log:
Updates for new 17-Oct-2008 design.
- Author:
- rool
- Date:
- Fri Oct 17 15:10:04 +0100 2008
- Size:
- 547 Bytes
1 | # Hacky temporary database configuration just to keep Rails |
2 | # 1.2 from breaking and stop ActiveRecord complaining. This |
3 | # is required due to a Rails bug. See Rails tickets 6785 |
4 | # and 7868 for details: |
5 | # |
6 | # http://dev.rubyonrails.org/ticket/6795 |
7 | # http://dev.rubyonrails.org/ticket/7868 |
8 | |
9 | dbinfo: &dbinfo |
10 | adapter: postgresql |
11 | host: /home/rool/postgres/ |
12 | username: rool |
13 | password: set-password-here |
14 | |
15 | development: |
16 | <<: *dbinfo |
17 | database: hub-test |
18 | |
19 | test: |
20 | <<: *dbinfo |
21 | database: hub-test |
22 | |
23 | production: |
24 | <<: *dbinfo |
25 | database: hub-test |