Skip to content

Commit

Permalink
updateD
Browse files Browse the repository at this point in the history
  • Loading branch information
rben7 committed May 10, 2012
1 parent 38e3de6 commit 6d13363
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -5,7 +5,7 @@ gem 'rails', '3.2.3'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'postgres-pr'
gem 'pg'


# Gems used only for assets and not required
Expand Down
12 changes: 6 additions & 6 deletions config/database.yml
Expand Up @@ -4,22 +4,22 @@
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
development:
adapter: sqlite3
database: db/development.sqlite3
adapter: postgresql
database: project_development
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
adapter: postgresql
database: project_test
pool: 5
timeout: 5000

production:
adapter: sqlite3
database: db/production.sqlite3
adapter: postgresql
database: project_production
pool: 5
timeout: 5000

0 comments on commit 6d13363

Please sign in to comment.