Skip to content

Instantly share code, notes, and snippets.

@takuma7
Created June 12, 2013 03:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takuma7/5762559 to your computer and use it in GitHub Desktop.
Save takuma7/5762559 to your computer and use it in GitHub Desktop.
# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
development:
adapter: mysql2
encoding: utf8
reconnect: false
database: ut-addventure_development
pool: 5
username: root
host: 127.0.0.1
port: 3306
# 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: mysql2
database: ut-addventure_test
pool: 5
timeout: 5000
username: root
host: 127.0.0.1
port: 3306
production:
adapter: mysql2
database: ut-addventure_production
pool: 5
timeout: 5000
username: root
host: 127.0.0.1
port: 3306
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment