Skip to content

Commit

Permalink
fixing the postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
gugote committed Feb 12, 2016
1 parent e641cb2 commit bd5c32c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/database.yml
Expand Up @@ -5,21 +5,21 @@
# gem 'sqlite3'
#
default: &default
adapter: sqlite3
adapter: postgresql
pool: 5
timeout: 5000

development:
<<: *default
database: db/development.sqlite3
database: db/development.postgresql

# 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:
<<: *default
database: db/test.sqlite3
database: db/test.postgresql

production:
<<: *default
database: db/production.sqlite3
database: db/production.postgresql

0 comments on commit bd5c32c

Please sign in to comment.