summaryrefslogtreecommitdiff
path: root/config/database.yml
blob: bd1748e1dd6b96d2329539d46ce41d6a4d6e8a8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
development: 
   adapter: mysql2 
   encoding: utf8 
   database: gemeinschaft 
   pool: 5 
   username: gemeinschaft 
   password: gemeinschaft 
   socket: /var/run/mysqld/mysqld.sock 
   reconnect: true 

production: 
   adapter: mysql2 
   encoding: utf8 
   database: gemeinschaft 
   pool: 10 
   username: gemeinschaft 
   password: gemeinschaft 
   socket: /var/run/mysqld/mysqld.sock 
   reconnect: true

# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.

test:
   adapter: sqlite3
   database: db/test.sqlite3
   pool: 5
   timeout: 5000