Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
bricesanchez committed Aug 28, 2017
1 parent 1da0f74 commit 850cde7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions doc/guides/7 - Hosting and Deployment/1 - Heroku.md
Expand Up @@ -53,13 +53,13 @@ gem 'sqlite3' # or whatever the database driver for your local database is
to:

```ruby
group :development, :test do
gem 'sqlite3'
end
group :development, :test do
gem 'sqlite3'
end

group :production do
gem 'pg'
end
group :production do
gem 'pg'
end
```

__WARNING__: Using differing databases for development and production is not recommended. Occasionally, specific Rails idioms may have different effects on different databases. We encourage you to set up and develop on PostgreSQL if you intend to deploy your application to Heroku.
Expand Down

0 comments on commit 850cde7

Please sign in to comment.