Skip to content

Instantly share code, notes, and snippets.

@aostrega
Created June 17, 2015 23:19
Show Gist options
  • Save aostrega/4001e8221ddfbc129878 to your computer and use it in GitHub Desktop.
Save aostrega/4001e8221ddfbc129878 to your computer and use it in GitHub Desktop.
Simple sqlite3 database.yml
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