blob: ffa8d11b4bc3fbe9a1d3f9cd57ef1eaf710ed394 (
plain) (
blame)
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
|
development:
adapter: mysql
database: <%= app_name %>_development
socket: <%= socket %>
username: root
password:
# With the MySQL adapter on localhost, it defaults to /tmp/mysql.sock
# socket: /var/run/mysqld/mysqld.sock
# 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: mysql
database: <%= app_name %>_test
socket: <%= socket %>
username: root
password:
production:
adapter: mysql
database: <%= app_name %>_production
socket: <%= socket %>
username: root
password:
|