Added Initial Menu System
[base_ror3_portal.git] / config / database.yml
blobf8dbb1d29f3d34017b715dc124db6798ad38a9b2
1 # MySQL.  Versions 4.1 and 5.0 are recommended.
3 # Install the MySQL driver:
4 #   gem install mysql2
6 # And be sure to use new-style password hashing:
7 #   http://dev.mysql.com/doc/refman/5.0/en/old-client.html
8 development:
9   adapter: mysql2
10   encoding: utf8
11   reconnect: false
12   database: UK_Portal_development
13   pool: 5
14   username: root
15   password: sqldba
16   socket: /var/run/mysqld/mysqld.sock
18 # Warning: The database defined as "test" will be erased and
19 # re-generated from your development database when you run "rake".
20 # Do not set this db to the same as development or production.
21 test: &test
22   adapter: mysql2
23   encoding: utf8
24   reconnect: false
25   database: UK_Portal_test
26   pool: 5
27   username: root
28   password: sqldba
29   socket: /var/run/mysqld/mysqld.sock
31 production:
32   adapter: mysql2
33   encoding: utf8
34   reconnect: false
35   database: UK_Portal_production
36   pool: 5
37   username: root
38   password: sqldba
39   socket: /var/run/mysqld/mysqld.sock
41 cucumber:
42   <<: *test