1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Removed leading : from database.yml file

This commit is contained in:
Andrew Ferk 2010-09-18 09:46:32 -05:00
parent a2fddff035
commit 8050d94907

View file

@ -128,26 +128,26 @@ h4. Test Setup
# vendor/plugins/yaffle/test/database.yml
sqlite:
:adapter: sqlite
:database: vendor/plugins/yaffle/test/yaffle_plugin.sqlite.db
adapter: sqlite
database: vendor/plugins/yaffle/test/yaffle_plugin.sqlite.db
sqlite3:
:adapter: sqlite3
:database: vendor/plugins/yaffle/test/yaffle_plugin.sqlite3.db
adapter: sqlite3
database: vendor/plugins/yaffle/test/yaffle_plugin.sqlite3.db
postgresql:
:adapter: postgresql
:username: postgres
:password: postgres
:database: yaffle_plugin_test
:min_messages: ERROR
adapter: postgresql
username: postgres
password: postgres
database: yaffle_plugin_test
min_messages: ERROR
mysql:
:adapter: mysql
:host: localhost
:username: root
:password: password
:database: yaffle_plugin_test
adapter: mysql
host: localhost
username: root
password: password
database: yaffle_plugin_test
</yaml>
For this guide you'll need 2 tables/models, Hickwalls and Wickwalls, so add the following: