Created
June 17, 2015 23:19
-
-
Save aostrega/4001e8221ddfbc129878 to your computer and use it in GitHub Desktop.
Simple sqlite3 database.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
common: &common | |
adapter: sqlite3 | |
encoding: unicode | |
pool: 5 | |
development: | |
<<: *common | |
database: db/development.db | |
# 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: | |
<<: *common | |
database: db/test.db |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment