Skip to content

Instantly share code, notes, and snippets.

@danopia
Created April 25, 2011 04:19
Show Gist options
  • Star 31 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save danopia/940155 to your computer and use it in GitHub Desktop.
Save danopia/940155 to your computer and use it in GitHub Desktop.
Default SQLite database.yml
# SQLite version 3.x
# gem install sqlite3-ruby (not necessary on OS X Leopard)
development:
adapter: sqlite3
database: db/development.sqlite3
pool: 5
timeout: 5000
# 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: sqlite3
database: db/test.sqlite3
pool: 5
timeout: 5000
production:
adapter: sqlite3
database: db/production.sqlite3
pool: 5
timeout: 5000
@dankozlowski
Copy link

Woo! Thank you!

@ValterAndrei
Copy link

Thanks!

@vendethiel
Copy link

Ty!

@audy
Copy link

audy commented Feb 15, 2019

Danke!

@tonsojun
Copy link

Thank you so much!

@equivalent
Copy link

also good choice is to add

  strict: true

https://blog.saeloun.com/2022/11/15/strict-sqlite/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment