improved database.yml.example
This commit is contained in:
parent
009bbb826b
commit
f7c7ea33b6
1 changed files with 15 additions and 14 deletions
|
|
@ -1,21 +1,22 @@
|
||||||
test:
|
common: &common
|
||||||
adapter: mysql2
|
adapter: mysql2
|
||||||
database: diaspora_test
|
host: "localhost"
|
||||||
username: root
|
port: 3306
|
||||||
password: password
|
# socket: /tmp/mysql.sock
|
||||||
|
username: "root"
|
||||||
|
password: "password"
|
||||||
charset: utf8
|
charset: utf8
|
||||||
collation: utf8_bin
|
collation: utf8_bin
|
||||||
|
|
||||||
|
|
||||||
development:
|
development:
|
||||||
adapter: mysql2
|
<<: *common
|
||||||
database: diaspora_development
|
database: diaspora_development
|
||||||
username: root
|
|
||||||
password: password
|
|
||||||
charset: utf8
|
|
||||||
collation: utf8_bin
|
|
||||||
production:
|
production:
|
||||||
adapter: mysql2
|
<<: *common
|
||||||
database: diaspora_production
|
database: diaspora_production
|
||||||
username: root
|
|
||||||
password: password
|
test:
|
||||||
charset: utf8
|
<<: *common
|
||||||
collation: utf8_bin
|
database: "diaspora_test"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue