Skip to content

Commit

Permalink
rename database sample
Browse files Browse the repository at this point in the history
  • Loading branch information
mokevnin committed Jul 22, 2013
1 parent 821430d commit 9a0477b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rvm:
- 2.0.0
before_script:
- cp config/database.yml.sample config/database.yml
- cp config/database.sample.yml config/database.yml
23 changes: 23 additions & 0 deletions config/database.sample.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
development:
adapter: postgresql
encoding: unicode
database: rails-examples_development
pool: 5
username: postgres
password:

test:
adapter: postgresql
encoding: unicode
database: rails-examples_test
pool: 5
username: postgres
password:

production:
adapter: postgresql
encoding: unicode
database: rails-examples_production
pool: 5
username: rails-examples
password:

0 comments on commit 9a0477b

Please sign in to comment.